11 lines
199 B
TypeScript
Raw Normal View History

2024-01-21 17:54:00 -05:00
import React from "react";
2024-01-22 19:41:07 -05:00
import App from "./App";
2024-01-27 14:30:15 -05:00
import { createRoot } from "react-dom/client";
2024-01-21 17:54:00 -05:00
2024-01-27 14:30:15 -05:00
const root = createRoot(document.getElementById("root")!);
root.render(
<>
<App />
</>,
);