'use client' import type { App as WorkspaceApp } from '@/types/app' import { cn } from '@langgenius/dify-ui/cn' import * as React from 'react' import { useTranslation } from 'react-i18next' import Link from '@/next/link' import ContinueWorkItem from './item' type ContinueWorkProps = { apps: WorkspaceApp[] className?: string } const ContinueWork = ({ apps, className }: ContinueWorkProps) => { const { t } = useTranslation() if (apps.length === 0) return null return (

{t(($) => $['continueWork.title'], { ns: 'explore' })}

{t(($) => $['continueWork.exploreStudio'], { ns: 'explore' })}
{apps.map((app) => ( ))}
) } export default React.memo(ContinueWork)