e08f5ef550
Remove storyline/scene NPC binding and export chosen NPCs with relations/groups. Harden export modal so a missing npcs payload no longer blacks out the editor. Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
626 B
TypeScript
23 lines
626 B
TypeScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import '../shared/ui/globals.css';
|
|
import { WindowErrorBoundary } from '../shared/ui/WindowErrorBoundary';
|
|
import { EditorApp } from './EditorApp';
|
|
import { EditorI18nProvider } from './i18n/EditorI18nContext';
|
|
|
|
const rootEl = document.getElementById('root');
|
|
if (!rootEl) {
|
|
throw new Error('Missing #root element');
|
|
}
|
|
|
|
createRoot(rootEl).render(
|
|
<React.StrictMode>
|
|
<WindowErrorBoundary title="Редактор">
|
|
<EditorI18nProvider>
|
|
<EditorApp />
|
|
</EditorI18nProvider>
|
|
</WindowErrorBoundary>
|
|
</React.StrictMode>,
|
|
);
|