mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
2de9628865
* mobile sync * lintfix
14 lines
320 B
JavaScript
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')} />
|
|
);
|
|
};
|