Files
headplane/app/spa/main.tsx
2026-05-16 20:15:04 -04:00

17 lines
323 B
TypeScript

import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "~/tailwind.css";
import { App } from "./app";
const root = document.getElementById("root");
if (!root) {
throw new Error("Unable to find root element");
}
createRoot(root).render(
<StrictMode>
<App />
</StrictMode>,
);