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