37ba855faf
Add a dedicated NPC editor window, directed relations, control/presentation avatar overlay, and ru/en help for the new section. Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
473 B
TypeScript
21 lines
473 B
TypeScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import '../shared/ui/globals.css';
|
|
import { EditorI18nProvider } from '../editor/i18n/EditorI18nContext';
|
|
|
|
import { NpcsApp } from './NpcsApp';
|
|
|
|
const rootEl = document.getElementById('root');
|
|
if (!rootEl) {
|
|
throw new Error('Missing #root element');
|
|
}
|
|
|
|
createRoot(rootEl).render(
|
|
<React.StrictMode>
|
|
<EditorI18nProvider>
|
|
<NpcsApp />
|
|
</EditorI18nProvider>
|
|
</React.StrictMode>,
|
|
);
|