SCGR's picture
Integrate VLMs
d7291ef
raw
history blame
262 Bytes
import '@ifrc-go/ui/index.css';
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)