Add new-account component to Storybook (#11638)

* add action

* lintfix
feature/default_network_editable
Etienne Dusseault 3 years ago committed by GitHub
parent 7d0d6013af
commit 2ca7f066e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      ui/pages/create-account/new-account.stories.js

@ -0,0 +1,11 @@
import React from 'react';
import { action } from '@storybook/addon-actions';
import NewAccountCreateForm from './new-account.component';
export default {
title: 'New Account',
};
export const NewAccountComponent = () => {
return <NewAccountCreateForm createAccount={action('Account Created')} />;
};
Loading…
Cancel
Save