Portal/rsconcept/frontend/src/main.tsx
2025-02-12 21:36:03 +03:00

13 lines
259 B
TypeScript

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