'use client'; /** * Canvas Area * * Central area where blocks appear. Shows empty state when no block is active. */ import { useSwiftStore } from '@/stores/swift-store'; export function CanvasArea() { const { activeBlock } = useSwiftStore(); return (
{activeBlock ? ( // Block will be rendered here by the page component
Block: {activeBlock}
) : ( )}
); } function EmptyState() { return (

Wat wil je doen?

Typ of spreek je intentie

⌘K om te focussen

); } function ExampleCommand({ icon, text }: { icon: string; text: string }) { return (
{icon} "{text}"
); }