From 2ca7f066e35f70337bb4e55e06f3377a92a313d4 Mon Sep 17 00:00:00 2001 From: Etienne Dusseault Date: Mon, 30 Aug 2021 17:57:39 -0500 Subject: [PATCH] Add new-account component to Storybook (#11638) * add action * lintfix --- ui/pages/create-account/new-account.stories.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ui/pages/create-account/new-account.stories.js diff --git a/ui/pages/create-account/new-account.stories.js b/ui/pages/create-account/new-account.stories.js new file mode 100644 index 000000000..b7a3f1dbd --- /dev/null +++ b/ui/pages/create-account/new-account.stories.js @@ -0,0 +1,11 @@ +import React from 'react'; +import { action } from '@storybook/addon-actions'; +import NewAccountCreateForm from './new-account.component'; + +export default { + title: 'New Account', +}; + +export const NewAccountComponent = () => { + return ; +};