aee0f09db8
- Datafabrik: Dockerfile fix, agentorkestrering fungerar - Vision: Identify-modell, FAISS, OCR alla testade - API: Alla 7 integrationstester passerade - Upplösare: Entitetsupplösning verifierad
22 lines
486 B
TypeScript
22 lines
486 B
TypeScript
import React from 'react';
|
|
import { Sidebar } from './Sidebar';
|
|
import { TopBar } from './TopBar';
|
|
|
|
interface LayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function Layout({ children }: LayoutProps) {
|
|
return (
|
|
<div className="flex h-screen bg-gray-50">
|
|
<Sidebar />
|
|
<div className="flex-1 flex flex-col overflow-hidden">
|
|
<TopBar />
|
|
<main className="flex-1 overflow-y-auto p-6">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|