feishin/src/remote/index.tsx

9 lines
212 B
TypeScript
Raw Normal View History

import { createRoot } from 'react-dom/client';
2025-05-20 19:23:36 -07:00
import { App } from '/@/remote/app';
const container = document.getElementById('root')! as HTMLElement;
const root = createRoot(container);
2025-06-24 14:36:14 -07:00
root.render(<App />);