1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-29 15:50:28 +01:00
metamask-extension/ui/components/app/edit-gas-display/edit-gas-display.stories.js

41 lines
759 B
JavaScript
Raw Normal View History

import React from 'react';
import EditGasDisplay from '.';
export default {
title: 'Components/App/EditGasDisplay',
id: __filename,
2022-06-15 21:55:04 +02:00
args: {
transaction: {},
},
};
2022-06-15 21:55:04 +02:00
export const DefaultStory = (args) => {
return (
<div style={{ width: '600px' }}>
2022-06-15 21:55:04 +02:00
<EditGasDisplay {...args} />
</div>
);
};
DefaultStory.storyName = 'Default';
2022-06-15 21:55:04 +02:00
export const WithEducation = (args) => {
return (
<div style={{ width: '600px' }}>
2022-06-15 21:55:04 +02:00
<EditGasDisplay showEducationButton {...args} />
</div>
);
};
2022-06-15 21:55:04 +02:00
export const WithDappSuggestedGas = (args) => {
return (
<div style={{ width: '600px' }}>
<EditGasDisplay
dappSuggestedGasFee="100000"
dappOrigin="davidwalsh.name"
2022-06-15 21:55:04 +02:00
{...args}
/>
</div>
);
};