Files
DndGamePlayer/app/renderer/editor/main.tsx
T

17 lines
354 B
TypeScript

import React from 'react';
import { createRoot } from 'react-dom/client';
import '../shared/ui/globals.css';
import { EditorApp } from './EditorApp';
const rootEl = document.getElementById('root');
if (!rootEl) {
throw new Error('Missing #root element');
}
createRoot(rootEl).render(
<React.StrictMode>
<EditorApp />
</React.StrictMode>,
);