mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
unlock-page (#11955)
This commit is contained in:
parent
9f10fe8c97
commit
4426104fc7
20
ui/pages/unlock-page/unlock-page.stories.js
Normal file
20
ui/pages/unlock-page/unlock-page.stories.js
Normal file
@ -0,0 +1,20 @@
|
||||
import React from 'react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import UnlockPage from './unlock-page.component';
|
||||
|
||||
export default {
|
||||
title: 'UnlockPage',
|
||||
};
|
||||
|
||||
export const UnlockPageComponent = () => {
|
||||
return (
|
||||
<UnlockPage
|
||||
onSubmit={action('Login')}
|
||||
forceUpdateMetamaskState={() => ({
|
||||
participateInMetaMetrics: true,
|
||||
})}
|
||||
showOptInModal={() => null}
|
||||
history={{}}
|
||||
/>
|
||||
);
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user