import { createRoot } from 'react-dom/client'; // Import polyfills first import './lib/polyfills.ts'; import App from './App.tsx'; import './index.css'; // FIXME: a custom font should be used. Eg: // import '@fontsource-variable/'; createRoot(document.getElementById("root")!).render();