mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-07 12:15:06 -05:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import ReactDOM from 'react-dom/client';
|
|
|
|
import InvokeAIUI from './app/components/InvokeAIUI';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
|
|
<InvokeAIUI />
|
|
);
|