import { useState } from 'react' function App() { const [count, setCount] = useState(0) return null; } export default App