'use client'; /** * Swift Command Center Page * * Main entry point for Swift - the Contextual UI EPD. */ import { useSwiftStore } from '@/stores/swift-store'; import { CommandCenter } from '@/components/swift'; export default function SwiftPage() { const { activeBlock } = useSwiftStore(); return ( {activeBlock ? (
Block: {activeBlock}
) : (

Wat wil je doen?

Typ of spreek je intentie, bijvoorbeeld: "notitie jan medicatie"

)}
); }