// frontend/components/journey/JourneyColumn.tsx — 단계 컬럼 (원본 Col) import type { JourneyStage } from "@/lib/types"; export function JourneyColumn({ stage, count, children, }: { stage: JourneyStage; count?: string; children: React.ReactNode; }) { return (
{stage.title} {count || stage.n}
{children}
); }