You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
436 B
22 lines
436 B
/* eslint-disable react/prop-types */
|
|
import React from 'react';
|
|
import ConfirmDeployContract from '.';
|
|
|
|
export default {
|
|
title: 'Pages/ConfirmDeployContract',
|
|
id: __filename,
|
|
component: ConfirmDeployContract,
|
|
argTypes: {
|
|
txData: {
|
|
control: {
|
|
type: 'object',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => {
|
|
return <ConfirmDeployContract {...args} />;
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|