mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
17 lines
510 B
JavaScript
17 lines
510 B
JavaScript
import React from 'react';
|
|
import { action } from '@storybook/addon-actions';
|
|
import ImportWithSeedPhrase from './import-with-seed-phrase/import-with-seed-phrase.component';
|
|
import NewAccount from './new-account';
|
|
|
|
export default {
|
|
title: 'Create Password',
|
|
};
|
|
|
|
export const ImportWithSeedPhraseComponent = () => {
|
|
return <ImportWithSeedPhrase onSubmit={action('Seed Phrase Imported')} />;
|
|
};
|
|
|
|
export const NewAccountComponent = () => {
|
|
return <NewAccount onSubmit={action('New Account Created')} />;
|
|
};
|