feat: scaffold electron orchestrator foundation

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Copilot CLI
2026-03-21 09:27:28 +01:00
co-authored by Copilot
parent 1ed3d3f652
commit 9e509593d6
46 changed files with 3870 additions and 13 deletions
+16
View File
@@ -0,0 +1,16 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from '@renderer/App';
import '@renderer/styles.css';
const container = document.getElementById('root');
if (!container) {
throw new Error('Could not find the root element.');
}
createRoot(container).render(
<StrictMode>
<App />
</StrictMode>,
);