Sample app used during my react-hooks workshop at RocketSeat DoWhile.
Clone the repository.
git clone https://github.com/eltonsantos/cd into the directory.
cd hooksInstall the project dependencies:
yarn # or npm installStart the development server:
yarn start # or npm run start🚀 Head over to localhost:3000 in your browser of choice.
💡 Pro tip use the App.final.js as you final reference guide
- React as a UI language
- TailwindCss UI as our design toolkit
The project follows a regular create-react-app skeleton with very few modifications.
Under the src folder, we have two main directories:
App.js: the place where the main logic for this workshopcomponents/: Components reused across pagesutils.js: Which contains, as the name suggests, utility shared funcitons,