1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
metamask-extension/ui/pages/mobile-sync/mobile-sync.stories.js
Etienne Dusseault 2de9628865
Add mobile-sync component to Storybook (#11645)
* mobile sync

* lintfix
2021-08-30 12:58:58 -10:00

14 lines
320 B
JavaScript

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