mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
33cc8d587a
* replaced all the instances of collectibles with nfts * updated actions * updated e2e seeder * updated confirm Approve test * updated test dapp change * updated test dapp change * nit fix * nit fix * updated casing and snapshots * updated casinG * added migrations * updated ,igration * updated 078.test * updated tests for 078 migration * updated migration * updated 078 index.js
43 lines
817 B
JavaScript
43 lines
817 B
JavaScript
import React from 'react';
|
|
import NftDefaultImage from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/NftDefaultImage',
|
|
|
|
argTypes: {
|
|
name: {
|
|
control: 'text',
|
|
},
|
|
tokenId: {
|
|
control: 'text',
|
|
},
|
|
handleImageClick: {
|
|
action: 'handleImageClick',
|
|
},
|
|
},
|
|
args: {
|
|
name: null,
|
|
tokenId: '12345',
|
|
handleImageClick: null,
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => (
|
|
<div style={{ width: 200, height: 200 }}>
|
|
<NftDefaultImage {...args} />
|
|
</div>
|
|
);
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
export const HandleImageClick = (args) => (
|
|
<div style={{ width: 200, height: 200 }}>
|
|
<NftDefaultImage {...args} />
|
|
</div>
|
|
);
|
|
|
|
HandleImageClick.args = {
|
|
// eslint-disable-next-line no-alert
|
|
handleImageClick: () => window.alert('NftDefaultImage clicked!'),
|
|
};
|