lilith-platform.live/codebase/@features/admin/frontend-public/src/main.tsx
2026-04-12 22:32:12 -07:00

15 lines
397 B
TypeScript

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { logVersionBanner } from '@lilith/vite-version-plugin/console';
import { App } from './App';
logVersionBanner();
const root = document.getElementById('root');
if (!root) throw new Error('Root element #root not found in document');
createRoot(root).render(
<StrictMode>
<App />
</StrictMode>,
);