13 lines
259 B
TypeScript
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>
|
|
);
|