@financial-times/n-conversion-forms
Version:
Containing jsx components and styles for forms included on Accounts and Acquisition apps (next-signup, next-profile, next-retention, etc).
19 lines (16 loc) • 395 B
JavaScript
import React from 'react';
import { PaymentType } from './payment-type';
export default {
title: 'Payment Type',
component: PaymentType,
};
export const Basic = (args) => <PaymentType {...args} />;
Basic.args = {
value: 'creditcard',
enableApplepay: true,
enableDirectdebit: true,
enableCreditcard: true,
enablePaypal: true,
enableBankTransfer: true,
enableZuoraPaymentLink: true,
};