import { useState } from 'react' import reactLogo from './assets/react.svg' import viteLogo from '/vite.svg' import './App.css' import { BACKEND_URL } from './config' function App() { const [count, setCount] = useState(0) return ( <>
Edit src/App.tsx and save to test HMR
Backend URL: {BACKEND_URL || '(not configured)'}
Click on the Vite and React logos to learn more
> ) } export default App