@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).
19 lines (16 loc) • 395 B
JavaScript
import React from 'react';
import { DeliveryCity } from './delivery-city';
import { countriesSupportedISO } from '../helpers/supportedCountries';
export default {
title: 'Delivery City',
component: DeliveryCity,
argTypes: {
country: {
control: {
type: 'inline-radio',
options: countriesSupportedISO,
},
},
},
};
export const Basic = (args) => <DeliveryCity {...args} />;