Files
emaui/apps/portal/src/main.tsx

18 lines
431 B
TypeScript

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import '@mantine/core/styles.css';
import '@mantine/notifications/styles.css';
import './app/theme/portal.css';
import './app/i18n/config';
import { App } from './app/app';
const root = document.getElementById('root');
if (!root) throw new Error('Root element not found');
createRoot(root).render(
<StrictMode>
<App />
</StrictMode>,
);