52 | )
53 | }
54 | };
55 |
56 |
57 | export default App;
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Dev Environment Set Up
2 |
3 | In order to propertly work with this repo you will need the following installed on your computer:
4 |
5 | [Node](https://nodejs.org/en/), [Git](http://git-scm.com/download/mac), [Create React App](https://www.npmjs.com/package/create-react-app)
6 |
7 | I use VS Code as my IDE.
8 |
9 | # Getting Started with GitHub
10 |
11 | For those of you unfamiliar with GitHub, here is a helpful [link] (https://docs.github.com/en/get-started/quickstart) on getting started. Hello World, Setting Up Git, and Fork a Repo are most relevant to this project.
12 |
13 | # Getting Started with `This Repo`
14 |
15 | Once everything is set up, `fork` and `clone` this repo.
16 |
17 | To download dependencies:
18 |
19 | $ npm install
20 |
21 |
22 | # Available Scripts
23 |
24 | In the project directory, you can run:
25 |
26 | ## `npm start`
27 |
28 | Runs the app in the development mode.\
29 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
30 |
31 | The page will reload when you make changes.\
32 | You may also see any lint errors in the console.
33 |
34 |
35 | ## `npm run build`
36 |
37 | Builds the app for production to the `build` folder.\
38 | It correctly bundles React in production mode and optimizes the build for the best performance.
39 |
40 | The build is minified and the filenames include the hashes.\
41 | Your app is ready to be deployed!
42 |
43 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
44 |
45 |
46 | # Learn More about NPM Scripts and the Package JSON
47 |
48 | An intro to [NPM Scripts is here](https://medium.com/@mariokandut/what-are-npm-scripts-cde15d275a9f). The docs are located [here](https://docs.npmjs.com/cli/v8/using-npm/scripts).
49 |
50 | # This project is set up with Create React App
51 | The React Docs give a pretty good explaination as to why Create React App is a great tool for setting up a React App in a learning environment. https://reactjs.org/docs/create-a-new-react-app.html#:~:text=Flexible%20Toolchains.-,Create%20React%20App,-Create%20React%20App
52 |
--------------------------------------------------------------------------------