'use client' import type { FC } from 'react' import { RiArrowRightSLine } from '@remixicon/react' import * as React from 'react' import { useTranslation } from 'react-i18next' import FolderSpark from '@/app/components/base/icons/src/vender/workflow/FolderSpark' import { cn } from '@/utils/classnames' type ArtifactsSectionProps = { className?: string } /** * Artifacts section component for file tree. * Shows the artifacts folder with badge and navigation arrow. * Clicking expands to show artifact files from test runs. * Placeholder implementation - functionality to be added later. */ const ArtifactsSection: FC = ({ className }) => { const { t } = useTranslation('workflow') // TODO: Replace with actual data const badgeText = 'Test Run#3' const hasNewFiles = true return (
) } export default React.memo(ArtifactsSection)