useState() Hook

useState() Hook

Introducing Hooks

hooks api

the state hook

import React, { useState } from 'react';

function Example() {
  // Declare a new state variable, which we'll call "count"
  const [count, setCount] = useState(0);

Reflection

Things I want to know more about

Return home