mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
5 lines
145 B
TypeScript
5 lines
145 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import { App } from './shell/app';
|
|
|
|
createRoot(document.getElementById('root')!).render(<App />);
|