DEV Community

joedev090
joedev090

Posted on

The Hooks in React

Hi Coders!!!

The last week I posted in my Linkedin about the hooks in javascript and react in spanish.

https://www.linkedin.com/posts/joedev90_hooks-javascript-react-activity-7252763632265056257-4Whg

I decided to create a post in english and then a series of post to explain in more details about the most used hooks in react.

So Let's check!!

The hooks are functions in javascript to create/access to the state and lifecycles of react components.

The hooks must use which these two rules:

  • Must be called on the top level of the app.
  • Must call in functions or in other customized hooks of react.

The most common hooks in react:

  • useState
  • useEffect
  • useContext
  • useRef
  • useReducer
  • useLayoutEffect
  • useMemo
  • useCallback

Finally we also have the way to create our custom hooks

I will have a link to check in details each one, it is in official react documentation.

https://react.dev/reference/react/hooks

Top comments (0)

πŸ‘‹ Kindness is contagious

Explore a sea of insights with this enlightening post, highly esteemed within the nurturing DEV Community. Coders of all stripes are invited to participate and contribute to our shared knowledge.

Expressing gratitude with a simple "thank you" can make a big impact. Leave your thanks in the comments!

On DEV, exchanging ideas smooths our way and strengthens our community bonds. Found this useful? A quick note of thanks to the author can mean a lot.

Okay