/tutorial_react_hooks

This is a code repository for the corresponding article on freeCodeCamp. In this tutorial we are going to explore React Hooks. Covered topics: useState and useEffect hooks, custom hooks, passing props, API calls.

Primary LanguageJavaScript

Initial Code

This is a repository containing inital code for React Hooks tutorial. Demo application is written with class based components, and the goal of the tutorial is to convert them to functional components using hooks.

Setup:

  • run npm i && npm start to start the development server

Covered topics:

  • why and how to use React Hooks
  • useState and useEffect hooks
  • custom hooks
  • passing props
  • API calls

Todo:

  • Convert this application to functional components using hooks.