add counter component

This commit is contained in:
Fred K. Schott 2021-04-10 12:35:25 -07:00
parent e3ca67d6dc
commit 1712f9edb6

View file

@ -0,0 +1,17 @@
import React, { useState } from 'react';
import confetti from 'canvas-confetti';
export default function Counter() {
// Declare a new state variable, which we'll call "count"
const [count, setCount] = useState(0);
console.log(confetti());
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}