AskJerry / frontend /src /main.jsx
NeonClary
Initial Ask Jerry demo: React UI on 3006, FastAPI proxy to vLLM on 8006
3b28871
raw
history blame
247 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.jsx'
import './index.css'
import './App.css'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>
)