A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/pages/confirm-deploy-contract/confirm-deploy-contract.sto...

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';