companion/@applications/web/src/main.tsx
Claude Code 0bc056d211 arch(applications): 🏗️ Refactor application imports and file structure
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-01 23:54:15 -07:00

14 lines
357 B
TypeScript

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { CompanionApp } from './app/CompanionApp';
const rootElement = document.getElementById('root');
if (!rootElement) {
throw new Error('Root element #root not found in DOM');
}
createRoot(rootElement).render(
<StrictMode>
<CompanionApp />
</StrictMode>,
);