1
0
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:
Etienne Dusseault 2021-08-30 17:59:20 -05:00 committed by GitHub
parent 2de9628865
commit 0a472a440a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')} />;
};