my harness for niri
1import { StrictMode } from "react"
2import { createRoot } from "react-dom/client"
3import { App } from "./App"
4import "highlight.js/styles/github-dark.css"
5import "./styles.css"
6
7const root = document.getElementById("root")
8if (!root) throw new Error("root element not found")
9
10createRoot(root).render(
11 <StrictMode>
12 <App />
13 </StrictMode>,
14)