1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/pages/create-account/new-account.stories.js

15 lines
374 B
JavaScript
Raw Normal View History

import React from 'react';
import { action } from '@storybook/addon-actions';
import NewAccountCreateForm from './new-account.component';
export default {
title: 'Pages/CreateAccount/NewAccount',
id: __filename,
};
export const DefaultStory = () => {
return <NewAccountCreateForm createAccount={action('Account Created')} />;
};
DefaultStory.storyName = 'Default';