1import { useState } from "react";2 3export function Counter() {4 const [count, setCount] = useState(0);5 6 // Increment on click7 return (8 <button onClick={() => setCount(count + 1)}>9 Clicked {count} times10 </button>11 );12}1 pnpm add motionnpx shadcn@latest add @smoothui/code-block