mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 13:00:13 +02:00
9 lines
228 B
TypeScript
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 />);
|