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 (

You clicked {count} times

); }