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

15 lines
264 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-08-01 20:14:03 +03:00
2023-07-15 17:46:19 +03:00
<App />
2023-08-01 20:14:03 +03:00
</GlobalProviders>
)