2021-12-14 00:41:10 +01:00
import React from 'react' ;
import CollectibleDetails from './collectible-details' ;
2022-06-30 17:46:38 +02:00
const collectible = {
name : 'Catnip Spicywright' ,
tokenId : '1124157' ,
address : '0x06012c8cf97bead5deae237070f9587f8e7a266d' ,
image : './catnip-spicywright.png' ,
description :
"Good day. My name is Catnip Spicywight, which got me teased a lot in high school. If I want to put low fat mayo all over my hamburgers, I shouldn't have to answer to anyone about it, am I right? One time I beat Arlene in an arm wrestle." ,
} ;
2021-12-14 00:41:10 +01:00
export default {
title : 'Components/App/CollectiblesDetail' ,
2023-01-20 20:27:46 +01:00
2021-12-14 00:41:10 +01:00
argTypes : {
collectible : {
control : 'object' ,
} ,
} ,
2022-06-30 17:46:38 +02:00
args : {
collectible ,
} ,
2021-12-14 00:41:10 +01:00
} ;
2022-06-30 17:46:38 +02:00
export const DefaultStory = ( args ) => {
return < CollectibleDetails { ... args } / > ;
2021-12-14 00:41:10 +01:00
} ;
DefaultStory . storyName = 'Default' ;
2022-06-30 17:46:38 +02:00
export const NoImage = ( args ) => {
return < CollectibleDetails { ... args } / > ;
} ;
NoImage . args = {
collectible : {
... collectible ,
image : undefined ,
} ,
2021-12-14 00:41:10 +01:00
} ;