Best of React HooksJune 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Is React Having An Angular.js Moment?

    React and Next.js teams have been promoting Server Components, a new way to build web applications that don't fit with most existing React apps. Server Components is entirely different from client-side JS, despite the fact that the base - JSX - remains the same.

  2. 2
    Article
    Avatar of hackernoonHacker Noon·3y

    Migrating from useState to useReducer in React Hooks

    Migrating from useState to useReducer in React Hooks is a simple hook that allows you to manage a single piece of state. Here is a basic example of how to convert a component that uses `useState' and 'useReducer' to manage state.

  3. 3
    Article
    Avatar of asayerasayer·3y

    Speed up React development with Refine

    Refine is an open-source, React-based framework used for building data-intensive front-end web applications. It excels at eliminating repetitive CRUD tasks by providing critical functionalities like routing, authentication, internalization, and state management out of the box. Refine offers developers total control over styling and customization options.

  4. 4
    Article
    Avatar of hackernoonHacker Noon·3y

    Demystifying React Hooks: Usage, Examples, and Common Mistakes

    Demystifying React Hooks: Usage, Examples, and Common Mistakes Too Long; Didn't Read React is a JavaScript library used for building user interfaces. Hooks are functions that allow you to use state and other React features in functional components.

  5. 5
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How to Build a Shopping Cart with React and TypeScript

    A shopping cart lets people carry or store their goods while they're shopping – either online or in real life. In ecommerce apps, the shopping cart is a place where the user can store and view the items they are considering purchasing. In this tutorial we are going to build a real-life shopping cart with React and TypeScript.