Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raymond0208/urban-adventure
https://github.com/raymond0208/urban-adventure
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/raymond0208/urban-adventure
- Owner: raymond0208
- License: mit
- Created: 2024-02-02T15:20:54.000Z (about 1 year ago)
- Default Branch: codespace-urban-adventure-vpgvvwx6rpg34px
- Last Pushed: 2024-02-02T15:21:36.000Z (about 1 year ago)
- Last Synced: 2024-04-30T00:11:53.287Z (9 months ago)
- Language: JavaScript
- Size: 238 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
- Security: SECURITY.md
- Support: SUPPORT.MD
Awesome Lists containing this project
README
# Learn React with Codespaces đź“ť
Welcome to your first Codespace running a popular UI framework called React! We've got everything fired up and running for you to explore React and Codespaces for the first time.
A template for your project README.
## License
This project is licensed under the terms of the MIT open source license. Please refer to [MIT](https://github.com/github/codespaces-learn-with-me/blob/main/LICENSE) for the full terms.
## Maintainers
Please see [CODEOWNERS](CODEOWNERS).
## Support
Please see [SUPPORT](https://github.com/github/codespaces-learn-with-me/blob/main/SUPPORT.MD).
## Room for Improvement
There's always room for improvement in any project.
- If you have a suggestion feel free to [open an issue](https://github.com/github/codespaces-learn-with-me/issues/new).
- If you have a solution, feel free to open a pull request.
Learn how in the [Contributing Guidelines](https://github.com/github/codespaces-learn-with-me/blob/main/CONTRIBUTING.md).
## How to Use
### Open in Codespace
Once our codespace is fully loaded, you will see a live preview of your web app on a tab titled "Simple Browser." (If you don’t see the “Simple Browser” tab yet, give it a few minutes to load.) It should look like the image below:
### Change some words
Currently, the web app states that "GitHub Codespaces ♥️ React." Let's replace the words “GitHub Codespaces” with our GitHub username by following these steps:
1. Navigate to the App.js file in the src folder. This is where the content for the web app lives.
2. On line 9 of the App.js file, you will see the words “GitHub Codespaces ♥️ React” wrapped in a paragraph tag represented by these characters `<p></p>`.
3. Change the words “GitHub Codespaces” on line 9 to your GitHub username.
4. Save the changes you made in your App.js file by pressing the keys “command and s” for Mac or “control and s” for Windows.
5. Check for the reflected changes in your simple browser tabMy GitHub username is blackgirlbytes, so my web app says “blackgirlbytes ♥️ React.”
### Change the background color
The background color for the React app is currently gray. Gray might be someone’s favorite color, but it’s not mine. Let’s brighten it up by following the steps below:
1. Navigate to the App.css file in the src folder. This is where the styles of the web app live.
2. On line 11 of the App.css file, you will see the following code:`background-color: #282c34;` #282c34 is the hex code for the color gray.
3. Try replacing the `#282c34` with the word `purple`. (That’s my favorite color!)
4. Save the changes you made in your App.css file by pressing the keys “command and s” for Mac or “control and s” for Windows.
5. Check for the reflected changes in your simple browser tab.The final version should resemble the image below: