Hooks at a Glance – React

PHOTO EMBED

Wed Jul 08 2020 15:08:42 GMT+0000 (Coordinated Universal Time)

Saved by @danish45007

import React, { useState } from 'react';

function Example() {

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

  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>
        Click me
      </button>
    </div>
  );
}
content_copyCOPY

https://reactjs.org/docs/hooks-overview.html