1ab6ffd593
Add path editor window, session playback on control/presentation, and RMB controls. Fix live pose clock so motion no longer freezes after ~250ms. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
675 B
TypeScript
24 lines
675 B
TypeScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import '../shared/ui/globals.css';
|
|
import { EditorI18nProvider } from '../editor/i18n/EditorI18nContext';
|
|
import { WindowErrorBoundary } from '../shared/ui/WindowErrorBoundary';
|
|
|
|
import { TokenPathEditorApp } from './TokenPathEditorApp';
|
|
|
|
const rootEl = document.getElementById('root');
|
|
if (!rootEl) {
|
|
throw new Error('Missing #root element');
|
|
}
|
|
|
|
createRoot(rootEl).render(
|
|
<React.StrictMode>
|
|
<WindowErrorBoundary title="Движение токена">
|
|
<EditorI18nProvider>
|
|
<TokenPathEditorApp />
|
|
</EditorI18nProvider>
|
|
</WindowErrorBoundary>
|
|
</React.StrictMode>,
|
|
);
|