From 2de962886524813fb1557112f6b585dcb111ca6c Mon Sep 17 00:00:00 2001 From: Etienne Dusseault Date: Mon, 30 Aug 2021 17:58:58 -0500 Subject: [PATCH] Add mobile-sync component to Storybook (#11645) * mobile sync * lintfix --- ui/pages/mobile-sync/mobile-sync.stories.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ui/pages/mobile-sync/mobile-sync.stories.js diff --git a/ui/pages/mobile-sync/mobile-sync.stories.js b/ui/pages/mobile-sync/mobile-sync.stories.js new file mode 100644 index 000000000..79c0e3730 --- /dev/null +++ b/ui/pages/mobile-sync/mobile-sync.stories.js @@ -0,0 +1,13 @@ +import React from 'react'; +import { action } from '@storybook/addon-actions'; +import MobileSyncPage from './mobile-sync.component'; + +export default { + title: 'Mobile Sync', +}; + +export const MobileSyncComponent = () => { + return ( + + ); +};