function App() { const [count, setCount] = useState(0) return (

count: {count}

) } export default App