Files
feishin/packages/renderer/src/index.tsx
T
2022-12-09 03:09:55 -08:00

9 lines
228 B
TypeScript

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