blob: d06333354e0b417eb51ae05fdd6937f3328248b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import "@fontsource-variable/fira-code";
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>,
);
|