CardVencimiento stories
CardVencimiento storiesunknown
plain_text
2 years ago
1.1 kB
3
Indexable
Never
import React from 'react'; import CardVencimiento from '../CardVencimiento/CardVencimiento'; export default { title: 'MetaTDR/Cards/CardVencimiento', component: CardVencimiento, argTypes: { }, }; const datos = { titulo: "22", sub: "Febrero", descripcion: [{ label: "Cuota:", value: "01", labelB:"Cuota:", valueB:"02", labelC:"Cuota:", valueC:"03", labelD:"Cuota:", valueD:"04", labelE:"Cuota:", valueE:"05", },{ label: "Cuota:", value: "01", labelB:"Cuota:", valueB:"02", labelC:"Cuota:", valueC:"03", labelD:"Cuota:", valueD:"04", labelE:"Cuota:", valueE:"05", }, ] } const Template = (args) => <CardVencimiento {...args} />; export const vencimientoCard = Template.bind({}); vencimientoCard.args = { datos:datos };