type Props = { title: string; image: string; onClick: () => void; }; function WorkflowTemplateCard({ title, image, onClick }: Props) { return (
{title}

{title}

Template

); } export { WorkflowTemplateCard };