mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 22:24:27 +01:00
23 lines
430 B
JavaScript
23 lines
430 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
import SnapPrivacyWarning from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/snaps/SnapPrivacyWarning',
|
||
|
component: SnapPrivacyWarning,
|
||
|
argTypes: {
|
||
|
onAccepted: {
|
||
|
action: 'onAccepted',
|
||
|
},
|
||
|
onCanceled: {
|
||
|
action: 'onCanceled',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <SnapPrivacyWarning {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|
||
|
|
||
|
DefaultStory.args = {};
|