mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 18:13:31 +00:00
8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
|
|
import { App } from '/@/remote/app';
|
|
|
|
const container = document.getElementById('root')! as HTMLElement;
|
|
const root = createRoot(container);
|
|
|
|
root.render(<App />);
|