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 thecss
needed, 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.js
the main file, aka entry point, and where we kickstart the react part withReactDOM
to render on ourpublic/index.html
App.js
our 'core' file where we will be doing some work on the classindex.css
where 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.css
more on why we havepublic/images
andsrc/images
on the class 😀