mirror of
https://gitlab.com/soapbox-pub/mkstack.git
synced 2025-08-27 21:19:23 +00:00
13 lines
309 B
TypeScript
13 lines
309 B
TypeScript
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/<font-name>';
|
|
|
|
createRoot(document.getElementById("root")!).render(<App />);
|