mirror of
https://github.com/tale/headplane.git
synced 2026-08-09 21:49:23 +00:00
17 lines
323 B
TypeScript
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>,
|
|
);
|