Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react hook example

// Hooks let you build stateful and dynamic components

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>
  );
}
Source by reactjs.org #
 
PREVIOUS NEXT
Tagged: #react #hook
ADD COMMENT
Topic
Name
2+5 =