import React from 'react'; import { action } from '@storybook/addon-actions'; import NewAccountCreateForm from './new-account.component'; export default { title: 'Pages/CreateAccount/NewAccount', argTypes: { accounts: { control: 'array', }, }, args: { accounts: [], }, }; export const DefaultStory = (args) => { return ( ); }; DefaultStory.storyName = 'Default';