import { useState } from "react"; function Counter() { const [count, setCount] = useState(0); return (
This is a simple React app demonstrating component structure.