mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-08 01:08:43 +08:00
6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import App from './App';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<App />);
|