Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import React, { useState } from 'react';
  2.  
  3.  
  4. const Counter = () => {
  5. const [count, setCount] = useState(0);
  6.  
  7. return (
  8. <div>
  9. <p> You've clicked the button {count} times. </p>
  10. <button onClick={() => setCount(count + 1)}>Click Me </button>
  11. </div>
  12. )
  13.  
  14. }
  15.  
  16. export default Counter;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement