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

Nasti + React

Edit src/App.tsx and save to test HMR.

) }