a4d790c0fe
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
import { StrictMode } from "react"
|
|
import { createRoot } from "react-dom/client"
|
|
import { App } from "./app"
|
|
import "./index.css"
|
|
|
|
// biome-ignore lint/style/noNonNullAssertion: root element guaranteed by index.html
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
)
|