koa-web-app / src /main.tsx
3v324v23's picture
initial commit: enrich functionality and configure for Hugging Face
fa813a0
raw
history blame contribute delete
226 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App'
import './index.css'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)