In this create-react-app project we have a basic template, located in public/index.html. This template will be used as basis
to our exercises. Feel free to get familiar and run this project locally.
Download or clone this repo and run npm install before running any command, such as npm start to run the server, so you can access http://localhost:3000/
public/: This is where we have the static parts of the project. We have some of thecssneeded, but the 'main' css file is insrc/index.css, more on that on the class 😁src/: This is where we have the main application files such as:index.jsthe main file, aka entry point, and where we kickstart the react part withReactDOMto render on ourpublic/index.htmlApp.jsour 'core' file where we will be doing some work on the classindex.csswhere the 'core' styling is, you don't have to bother with css in this class, it is all providedimages/where some of the images needed for theindex.cssmore on why we havepublic/imagesandsrc/imageson the class 😀