blob: fbf8ebcdbacf9d509eef874949096d593013ee22 (
plain)
1
2
3
4
5
6
7
8
|
import { createRoot } from 'react-dom/client';
import App from './app';
const app = new App();
const container = document.getElementById('app');
const root = createRoot(container!);
root.render(app.renderView());
|