mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-30 09:03:15 +00:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
|
|
//development
|
|
import { createRoot } from "react-dom/client";
|
|
import { App } from "./App";
|
|
import React from "react";
|
|
const container = document.getElementById("app") as HTMLElement;
|
|
const root = createRoot(container)
|
|
root.render(<App />);
|