UNPKG

@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).

15 lines (12 loc) 270 B
import React from 'react'; import { BillingCity } from './billing-city'; export default { title: 'Billing City', component: BillingCity, }; export const Basic = (args) => <BillingCity {...args} />; Basic.args = { hasError: false, value: '', isDisabled: false, };