my harness for niri
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 14 lines 347 B view raw
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)