import React from 'react' import { createRoot } from 'react-dom/client' import App, { AppErrorBoundary } from './App' import './ui/styles.css' const root = document.getElementById('root') if (root) { createRoot(root).render( ) }