import React from 'react' import { createRoot } from 'react-dom/client'; import App from './app/app' const container = document.getElementById('root'); if (container) { createRoot(container).render(); }