import { useState } from 'react' import ReactLogo from './assets/react.svg?react' //import ViteLogo from '/vite.svg?react' import './App.css' function App() { const [count, setCount] = useState(0) return ( <>
Edit src/App.tsx and save to test HMR
Click on the Vite and React logos to learn more
> ) } export default App