mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 08:25:07 +00: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 />);
|