mirror of
https://github.com/tiennm99/DocsGPT.git
synced 2026-06-09 14:11:04 +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 />); |