mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 20:40:15 +02:00
8 lines
203 B
TypeScript
8 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 />);
|