ConceptPortal-public/rsconcept/frontend/src/main.tsx

13 lines
259 B
TypeScript
Raw Normal View History

import './index.css';
2023-07-25 20:27:29 +03:00
import { createRoot } from 'react-dom/client';
2023-07-25 20:27:29 +03:00
import App from './App.tsx';
import GlobalProviders from './GlobalProviders';
2023-07-15 17:46:19 +03:00
createRoot(document.getElementById('root')!).render(
<GlobalProviders>
2023-07-15 17:46:19 +03:00
<App />
</GlobalProviders>
2023-12-28 14:04:44 +03:00
);