From 0a472a440ac45d542d44a76d804a71a687a23138 Mon Sep 17 00:00:00 2001 From: Etienne Dusseault Date: Mon, 30 Aug 2021 17:59:20 -0500 Subject: [PATCH] create-password (#11646) --- .../create-password/create-password.stories.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ui/pages/first-time-flow/create-password/create-password.stories.js diff --git a/ui/pages/first-time-flow/create-password/create-password.stories.js b/ui/pages/first-time-flow/create-password/create-password.stories.js new file mode 100644 index 000000000..1bc453e36 --- /dev/null +++ b/ui/pages/first-time-flow/create-password/create-password.stories.js @@ -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 ; +}; + +export const NewAccountComponent = () => { + return ; +};