mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
ae76364c17
* Create What's New storybook item * Remove unnecessary button type attribute * Remove unneccessary provider from story
17 lines
326 B
JavaScript
17 lines
326 B
JavaScript
import React from 'react';
|
|
import WhatsNewPopup from '.';
|
|
|
|
export default {
|
|
title: 'Components/Multichain/WhatsNewPopup',
|
|
component: WhatsNewPopup,
|
|
argTypes: {
|
|
onClose: {
|
|
action: 'onClose',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <WhatsNewPopup {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|