mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import App from './App.tsx';
|
|
import React from 'react';
|
|
const root = createRoot(document.getElementById('app') as HTMLElement);
|
|
|
|
root.render(<App />);
|