UseState Example 1

PHOTO EMBED

Tue Sep 06 2022 17:19:03 GMT+0000 (Coordinated Universal Time)

Saved by @bfpulliam #react.js

import { useState } from 'react';

function Counter() {
  const [count, setCount] = useState(0);

  function updateCount() {
    setCount(count + 1);
  }

  return <button onClick={updateCount}>Count is: {count}</button>;
}
content_copyCOPY