import React from 'react'; import ReactDOM from 'react-dom/client'; import './app/styles/index.css'; import App from './app/App'; import reportWebVitals from './reportWebVitals'; const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement ); root.render( ); reportWebVitals();