plane/web/components/cycles/list/cycles-list-map.tsx
2024-03-19 20:08:35 +05:30

21 lines
462 B
TypeScript

// components
import { CyclesListItem } from "@/components/cycles";
type Props = {
cycleIds: string[];
projectId: string;
workspaceSlug: string;
};
export const CyclesListMap: React.FC<Props> = (props) => {
const { cycleIds, projectId, workspaceSlug } = props;
return (
<>
{cycleIds.map((cycleId) => (
<CyclesListItem key={cycleId} cycleId={cycleId} workspaceSlug={workspaceSlug} projectId={projectId} />
))}
</>
);
};