mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
3747ace06b
* make use of getTokenStandardAndDetails method exposed on assetsContractController to determine how to represent the contract being interacted with in token contract method calls
26 lines
666 B
JavaScript
26 lines
666 B
JavaScript
import React from 'react';
|
|
import { store } from '../../../.storybook/preview';
|
|
import ConfirmTokenTransactionBase from './confirm-token-transaction-base';
|
|
|
|
export default {
|
|
title: 'Pages/ConfirmTokenTransactionBase',
|
|
id: __filename,
|
|
};
|
|
|
|
const state = store.getState();
|
|
|
|
export const DefaultStory = () => {
|
|
const { metamask, confirmTransaction } = state;
|
|
const { currentCurrency } = metamask;
|
|
const { fiatTransactionTotal } = confirmTransaction;
|
|
return (
|
|
<ConfirmTokenTransactionBase
|
|
currentCurrency={currentCurrency}
|
|
fiatTransactionTotal={fiatTransactionTotal}
|
|
tokenSymbol="DAI"
|
|
/>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|