f462e65581
Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
482 B
TypeScript
21 lines
482 B
TypeScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import '../shared/ui/globals.css';
|
|
import { EditorI18nProvider } from '../editor/i18n/EditorI18nContext';
|
|
|
|
import { ControlApp } from './ControlApp';
|
|
|
|
const rootEl = document.getElementById('root');
|
|
if (!rootEl) {
|
|
throw new Error('Missing #root element');
|
|
}
|
|
|
|
createRoot(rootEl).render(
|
|
<React.StrictMode>
|
|
<EditorI18nProvider>
|
|
<ControlApp />
|
|
</EditorI18nProvider>
|
|
</React.StrictMode>,
|
|
);
|