import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; import './styles.css'; const container = document.getElementById('app'); if (!container) { throw new Error('Missing #app container for React entry.'); } ReactDOM.createRoot(container).render( , );