import 'bootstrap/dist/css/bootstrap.min.css'; import React from 'react'; import { createRoot } from 'react-dom/client'; import JorgeDashboard from './components/dashboard/JorgeDashboard'; const container = document.getElementById('maintenance-dashboard'); if (container) { const root = createRoot(container); root.render(); }