This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
feishin/src/renderer/index.tsx
2022-12-19 17:44:40 -08:00

7 lines
203 B
TypeScript

import { createRoot } from 'react-dom/client';
import { App } from './app';
const container = document.getElementById('root')! as HTMLElement;
const root = createRoot(container);
root.render(<App />);