mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
7 lines
238 B
TypeScript
7 lines
238 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 />); |