Sample app used during my react-hooks workshop at RocketSeat Dowhile.
Clone the repository.
git clone https://github.com/vitormalencar/
cd
into the directory.
cd hooks
Install the project dependencies:
yarn
# or
npm install
Start 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,