import { createRoot } from 'react-dom/client'; import App from '../../backend/views/components/Main/App'; import './styles/admin.scss'; const disco = document.getElementById('disco'); const root = createRoot(disco); root.render();