Document Phase 0 scaffold and architecture

This commit is contained in:
2026-07-10 22:48:08 +03:00
parent 39fec46ab6
commit d646c51b90
26 changed files with 8222 additions and 1 deletions

16
src/renderer/index.tsx Normal file
View File

@@ -0,0 +1,16 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { App } from './App';
import './styles.css';
const rootElement = document.getElementById('root');
if (!rootElement) {
throw new Error('Renderer root element is missing');
}
createRoot(rootElement).render(
<StrictMode>
<App />
</StrictMode>,
);