mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
1c7c89abcb
* Replacing deprecated constants & creating stories * updating snapshot
20 lines
428 B
JavaScript
20 lines
428 B
JavaScript
import React from 'react';
|
|
import ConfirmGasDisplay from './confirm-gas-display';
|
|
|
|
export default {
|
|
title: 'Components/App/ConfirmGasDisplay',
|
|
component: ConfirmGasDisplay,
|
|
argTypes: {
|
|
userAcknowledgedGasMissing: {
|
|
control: 'boolean',
|
|
},
|
|
},
|
|
args: {
|
|
userAcknowledgedGasMissing: true,
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <ConfirmGasDisplay {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|