'use client'; /** * Recent Strip * * Shows last 5 actions as clickable chips for quick repeat. */ import { useSwiftStore } from '@/stores/swift-store'; export function RecentStrip() { const { recentActions } = useSwiftStore(); return (
Recent: {recentActions.length === 0 ? ( Nog geen acties ) : (
{recentActions.map((action) => ( ))}
)}
); }