import { ProgressBarStep, type Step } from './ProgressBarStep' export type Status = 'PENDING' | 'ACTIVE' | 'IN_PROGRESS' | 'DONE' | 'ERROR' export const ProgressBar = ({ steps }: { steps: Step[] }) => { return (
{steps.map((step, index) => ( ))}
) }