import { useState } from 'react' import reactLogo from './assets/react.svg' import viteLogo from '/vite.svg' import './App.css' function App() { const [count, setCount] = useState(0) return ( <>
Vite logo React logo

Vite + React

Add app_build_command: npm run build and app_file: dist/index.html in your README's metadata to easily build and deploy your app :)

Click on the Vite and React logos to learn more

) } export default App