strava-frontend/src/pages/payments/payment-system/PaymentSystem.stories.ts

17 lines
316 B
TypeScript

import PaymentSystem from "./PaymentSystem.vue";
export default {
title: "PaymentSystem",
component: PaymentSystem,
tags: ["autodocs"],
};
export const Default = () => ({
components: { PaymentSystem },
template: `
<PaymentSystem type="visa"/>
<br>
<PaymentSystem type="mastercard"/>
`,
});