beacon / frontend /src /main.jsx
kiyer's picture
feat: scaffold Vite frontend with ported prototype CSS
2ce02cd
Raw
History Blame Contribute Delete
241 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './styles/astroparse.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)