feat: add generated code

This commit is contained in:
aid-orchestrator
2026-04-25 16:21:27 +00:00
parent 1f60aca20b
commit dfe34e3f91
84 changed files with 2468 additions and 0 deletions

19
frontend/src/main.tsx Normal file
View File

@@ -0,0 +1,19 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import { initKeycloak } from './authProvider';
import App from './App';
async function bootstrap() {
try {
await initKeycloak();
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>
);
} catch (error) {
console.error('Failed to initialize Keycloak:', error);
}
}
bootstrap();