mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
6ede0422ca
* issue-18714: Replaced deprecated constants with enum in eth-sign-modal.js * issue-18714: Replaced deprecated constants with enum in hold-to-reveal-modal.js
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';
|