cfa3959fb3
Add TipTap editing in the editor and an Electron window on the control panel to read the current scene description. Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
509 B
TypeScript
21 lines
509 B
TypeScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import '../shared/ui/globals.css';
|
|
import { EditorI18nProvider } from '../editor/i18n/EditorI18nContext';
|
|
|
|
import { SceneDescriptionApp } from './SceneDescriptionApp';
|
|
|
|
const rootEl = document.getElementById('root');
|
|
if (!rootEl) {
|
|
throw new Error('Missing #root element');
|
|
}
|
|
|
|
createRoot(rootEl).render(
|
|
<React.StrictMode>
|
|
<EditorI18nProvider>
|
|
<SceneDescriptionApp />
|
|
</EditorI18nProvider>
|
|
</React.StrictMode>,
|
|
);
|