import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import '@mantine/core/styles.css'; import '@mantine/dates/styles.css'; import '@mantine/notifications/styles.css'; // After Mantine's CSS (it defines the variables these tokens resolve to), // before the app's own, which may override them. Relative because the // @ema-platform aliases are tsconfig paths, which do not carry subpaths. import '../../../libs/shared/src/lib/theme/semantic.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( , );