Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. export const CounterDemo = () => {
  2. const [count, handleCount] = useCounter(100, 130,5);
  3. return (<div>
  4. <p>{count}</p>
  5. <button onClick={handleCount}>Count</button>
  6. </div>);
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement