import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; import './index.css'; // Render the main application component into the root element. const rootElement = document.getElementById('root'); if (rootElement) { const root = ReactDOM.createRoot(rootElement); root.render( ); }