Code Snippets
1import React, { useState } from "react";
2function Example() {
3 const [count, setCount] = useState(0);
4 return (
5 <div>
6 <p>You clicked {count} times</p>
7 <button onClick={() => setCount(count + 1)}>
8 Click me
9 </button>
10 </div>
11 );
12}