@financial-times/n-conversion-forms
Version:
Containing jsx components and styles for forms included on Accounts and Acqusition apps (next-signup, next-profile, next-retention, etc).
26 lines (23 loc) • 650 B
JavaScript
import React from 'react';
import { DeliveryAddress } from './delivery-address';
import { countriesSupportedISO } from '../helpers/supportedCountries';
export default {
title: 'Delivery Address',
component: DeliveryAddress,
argTypes: {
fieldId: { control: 'string' },
hasError: { control: 'boolean' },
line1: { control: 'string' },
line2: { control: 'string' },
line3: { control: 'string' },
isDisabled: { control: 'boolean' },
isHidden: { control: 'boolean' },
country: {
control: {
type: 'inline-radio',
options: countriesSupportedISO,
},
},
},
};
export const Basic = (args) => <DeliveryAddress {...args} />;