mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00: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 />);
|