mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
854fc71ae7
* Organizing storybook to echo app folder structure * Updating new stories to follow new convention from develop
24 lines
448 B
JavaScript
24 lines
448 B
JavaScript
import React from 'react';
|
|
import TransactionTotalBanner from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/TransactionTotalBanner',
|
|
id: __filename,
|
|
};
|
|
|
|
export const DefaultStory = () => {
|
|
return (
|
|
<TransactionTotalBanner
|
|
total="~18.73"
|
|
detail={
|
|
<>
|
|
Up to <strong>$19.81</strong> (0.01234 ETH)
|
|
</>
|
|
}
|
|
timing="Very likely in < 15 seconds"
|
|
/>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|