import { createRoot, Root } from 'react-dom/client'; import { App } from './App'; import '@build/tailwind/main.css'; import './index.css'; const root = createRoot(document.getElementById('root')!); // This is the root of the app root.render();