mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00: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 />
|
|
);
|