mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-04 23:24:55 -05:00
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import ReactDOM from 'react-dom/client';
|
|
|
|
import Component from './component';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
|
|
<Component />
|
|
);
|