feishin/src/remote/index.tsx
2025-06-24 14:36:14 -07:00

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 />);