import React from 'react'; import CollectibleDefaultImage from '.'; export default { title: 'Components/App/CollectibleDefaultImage', id: __filename, argTypes: { name: { control: 'text', }, tokenId: { control: 'text', }, handleImageClick: { action: 'handleImageClick', }, }, args: { name: null, tokenId: '12345', handleImageClick: null, }, }; export const DefaultStory = (args) => (
); DefaultStory.storyName = 'Default'; export const handleImageClick = (args) => (
); handleImageClick.args = { // eslint-disable-next-line no-alert handleImageClick: () => window.alert('CollectibleDefaultImage clicked!'), };