1import { useState } from "react";2import { Button } from "@orbit/ui/button";34// A tiny counter widget5export function Counter() {6 const [count, setCount] = useState(0);78 return (9 <div className="flex flex-col gap-3">10 <h2 className="font-heading text-xl">11 Live preview12 </h2>13 <p>You clicked {count} times.</p>14 <Button onClick={() => setCount(count + 1)}>15 Increment16 </Button>17 </div>18 );19}
You clicked 3 times.