import React from "react"; import { TimelineBase } from "./layouts/timelines/TimelineBase"; interface CardStackProps { items: any[]; className?: string; } export { CardStack }; const CardStack: React.FC = ({ items, className = "" }) => { return (
({ id: item.id, label: item.label, detail: item.detail, }))} />
); };