clodes / frontend /src /main.jsx
nimzuk's picture
CI: sync from GitHub
c7bb297 verified
raw
history blame contribute delete
163 Bytes
import React from 'react'
import { createRoot } from 'react-dom/client'
import App from './ui/App.jsx'
createRoot(document.getElementById('root')).render(<App />)