Answers for "react useref or usestate or display"

0

useref in react hooks

import { useRef } from 'react';

function LogButtonClicks() {
  const countRef = useRef(0);  
  const handle = () => {
    countRef.current++;    console.log(`Clicked ${countRef.current} times`);
  };

  console.log('I rendered!');

  return <button onClick={handle}>Click me</button>;
}
Posted by: Guest on August-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language