22 lines
619 B
TypeScript
22 lines
619 B
TypeScript
|
|
import { AtomizerCanvas } from '../components/canvas/AtomizerCanvas';
|
||
|
|
|
||
|
|
export function CanvasView() {
|
||
|
|
return (
|
||
|
|
<div className="h-screen flex flex-col">
|
||
|
|
<header className="bg-white border-b border-gray-200 px-6 py-4">
|
||
|
|
<h1 className="text-xl font-bold text-gray-800">
|
||
|
|
Optimization Canvas
|
||
|
|
</h1>
|
||
|
|
<p className="text-sm text-gray-500">
|
||
|
|
Drag components from the palette to build your optimization workflow
|
||
|
|
</p>
|
||
|
|
</header>
|
||
|
|
<main className="flex-1 overflow-hidden">
|
||
|
|
<AtomizerCanvas />
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default CanvasView;
|