import React from 'react'; import EditGasDisplay from '.'; export default { title: 'Components/App/EditGasDisplay', id: __filename, args: { transaction: {}, }, }; export const DefaultStory = (args) => { return (
); }; DefaultStory.storyName = 'Default'; export const WithEducation = (args) => { return (
); }; export const WithDappSuggestedGas = (args) => { return (
); };