@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 (15 loc) • 388 B
JavaScript
import React from 'react';
import { Industry } from './industry';
export default {
title: 'Industry',
component: Industry,
};
export const Basic = (args) => <Industry {...args} />;
Basic.args = {
options: [
{ code: 'AGR', description: 'Agriculture' },
{ code: 'COM', description: 'Computing' },
],
};
export const Default = (args) => <Industry {...args} />;
Default.args = {};