organic_ast_explorer/src/index.tsx

11 lines
199 B
TypeScript
Raw Normal View History

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