mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
12 lines
307 B
JavaScript
12 lines
307 B
JavaScript
|
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')} />;
|
||
|
};
|