quanthedge / frontend /src /main.tsx
jashdoshi77's picture
QuantHedge: Full deployment with Docker + nginx + uvicorn
9d29748
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>
);