AGENTIC_InsurTech / main.tsx
designfailure's picture
Upload 22 files
eb9b2b9 verified
raw
history blame
234 Bytes
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import './index.css';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>
);