mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-05 03:35:04 -05:00
6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
import ReactDOM from 'react-dom/client';
|
|
|
|
import InvokeAIUI from './app/components/InvokeAIUI';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<InvokeAIUI isDebugging />);
|