import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import './index.css';

const rootElement = document.getElementById('root');

if (!rootElement) {
  throw new Error("L'élément racine DOM #root est introuvable. Impossible d'initialiser l'application METHOD-ILOGA.");
}

createRoot(rootElement).render(
  <StrictMode>
    <App />
  </StrictMode>,
);
