mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
854fc71ae7
* Organizing storybook to echo app folder structure * Updating new stories to follow new convention from develop
37 lines
673 B
JavaScript
37 lines
673 B
JavaScript
import React from 'react';
|
|
import EditGasDisplay from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/EditGasDisplay',
|
|
id: __filename,
|
|
};
|
|
|
|
export const DefaultStory = () => {
|
|
return (
|
|
<div style={{ width: '600px' }}>
|
|
<EditGasDisplay />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
export const WithEducation = () => {
|
|
return (
|
|
<div style={{ width: '600px' }}>
|
|
<EditGasDisplay showEducationButton />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const WithDappSuggestedGas = () => {
|
|
return (
|
|
<div style={{ width: '600px' }}>
|
|
<EditGasDisplay
|
|
dappSuggestedGasFee="100000"
|
|
dappOrigin="davidwalsh.name"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|