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