import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import { PublicClientApplication, EventType } from "@azure/msal-browser"; import { MsalProvider } from "@azure/msal-react"; import { msalConfig } from "./authConfig"; import './index.css' import App from './App.jsx' const msalInstance = new PublicClientApplication(msalConfig); // Initialize the msal instance if (!msalInstance.getActiveAccount() && msalInstance.getAllAccounts().length > 0) { msalInstance.setActiveAccount(msalInstance.getAllAccounts()[0]); } msalInstance.addEventCallback((event) => { if (event.eventType === EventType.LOGIN_SUCCESS && event.payload.account) { msalInstance.setActiveAccount(event.payload.account); } }); const root = createRoot(document.getElementById('root')); root.render( , )