mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
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';
|