mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
create-password (#11646)
This commit is contained in:
parent
2de9628865
commit
0a472a440a
@ -0,0 +1,16 @@
|
||||
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')} />;
|
||||
};
|
Loading…
Reference in New Issue
Block a user