import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import { AccountDashboard } from '../components/AccountDashboard' const el = document.getElementById('account-dashboard-app') if (el) { createRoot(el).render( , ) }