mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
09d29ef00d
* Renaming broken stories. Fixing deprecated default arg syntax for stories using defaultValue * Fixing imports
24 lines
499 B
JavaScript
24 lines
499 B
JavaScript
/* eslint-disable react/prop-types */
|
|
import React from 'react';
|
|
import ConfirmDeployContract from '.';
|
|
|
|
// eslint-disable-next-line import/no-anonymous-default-export
|
|
export default {
|
|
title: 'Pages/ConfirmDeployContract',
|
|
id: __filename,
|
|
component: ConfirmDeployContract,
|
|
argTypes: {
|
|
txData: {
|
|
control: {
|
|
type: 'object',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => {
|
|
return <ConfirmDeployContract {...args} />;
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|