Portal/rsconcept/frontend/src/main.tsx
2025-01-30 00:26:41 +03:00

13 lines
259 B
TypeScript

import './index.css';
import { createRoot } from 'react-dom/client';
import App from './app';
import GlobalProviders from './app/GlobalProviders';
createRoot(document.getElementById('root')!).render(
<GlobalProviders>
<App />
</GlobalProviders>
);