Wed Jul 08 2020 15:08:42 GMT+0000 (UTC)
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> ); }
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments