@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).
16 lines (13 loc) • 311 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' },
],
};