mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
|
import React from 'react';
|
||
|
import HoldToRevealModal from './hold-to-reveal-modal';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/Modals/HoldToRevealModal',
|
||
|
component: HoldToRevealModal,
|
||
|
};
|
||
|
|
||
|
const Template = (args) => <HoldToRevealModal {...args} />;
|
||
|
|
||
|
export const DefaultStory = Template.bind({});
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|