Portal/rsconcept/frontend/src/main.tsx

13 lines
259 B
TypeScript
Raw Normal View History

2024-06-07 20:17:03 +03:00
import { createRoot } from 'react-dom/client';
import GlobalProviders from './app/GlobalProviders';
2025-02-12 21:36:03 +03:00
import App from './app';
import './index.css';
2024-06-07 20:17:03 +03:00
createRoot(document.getElementById('root')!).render(
<GlobalProviders>
<App />
</GlobalProviders>
);