1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Add mobile-sync component to Storybook (#11645)

* mobile sync

* lintfix
This commit is contained in:
Etienne Dusseault 2021-08-30 17:58:58 -05:00 committed by GitHub
parent 57a5e4528b
commit 2de9628865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 (
<MobileSyncPage requestRevealSeedWords={action('Mobile Sync Requested')} />
);
};