diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-05 10:32:33 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-05 10:32:33 +0800 |
commit | d7b6d8222f459942f82338fee752d03fe2d1547a (patch) | |
tree | 6f258046460155914886abd68f7059aca7d3a779 /packages/instant/src/containers | |
parent | 1eb8d17ce36274093583069aab0025768a4a91ce (diff) | |
download | dexon-sol-tools-d7b6d8222f459942f82338fee752d03fe2d1547a.tar dexon-sol-tools-d7b6d8222f459942f82338fee752d03fe2d1547a.tar.gz dexon-sol-tools-d7b6d8222f459942f82338fee752d03fe2d1547a.tar.bz2 dexon-sol-tools-d7b6d8222f459942f82338fee752d03fe2d1547a.tar.lz dexon-sol-tools-d7b6d8222f459942f82338fee752d03fe2d1547a.tar.xz dexon-sol-tools-d7b6d8222f459942f82338fee752d03fe2d1547a.tar.zst dexon-sol-tools-d7b6d8222f459942f82338fee752d03fe2d1547a.zip |
Apply linter
Diffstat (limited to 'packages/instant/src/containers')
-rw-r--r-- | packages/instant/src/containers/selected_asset_amount_input.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/instant/src/containers/selected_asset_amount_input.tsx b/packages/instant/src/containers/selected_asset_amount_input.tsx index f5e1e134a..818caa965 100644 --- a/packages/instant/src/containers/selected_asset_amount_input.tsx +++ b/packages/instant/src/containers/selected_asset_amount_input.tsx @@ -1,5 +1,4 @@ import { BigNumber } from '@0xproject/utils'; -import { Web3Wrapper } from '@0xproject/web3-wrapper'; import * as React from 'react'; import { connect } from 'react-redux'; import { Dispatch } from 'redux'; @@ -8,7 +7,7 @@ import { State } from '../redux/reducer'; import { ColorOption } from '../style/theme'; import { Action, ActionTypes } from '../types'; -import { AmountInput, AmountInputProps } from '../components/amount_input'; +import { AmountInput } from '../components/amount_input'; export interface SelectedAssetAmountInputProps { fontColor?: ColorOption; @@ -31,6 +30,7 @@ const mapDispatchToProps = (dispatch: Dispatch<Action>): ConnectedDispatch => ({ onChange: value => dispatch({ type: ActionTypes.UPDATE_SELECTED_ASSET_AMOUNT, data: value }), }); -export const SelectedAssetAmountInput: React.ComponentClass<SelectedAssetAmountInputProps> = connect(mapStateToProps)( - AmountInput, -); +export const SelectedAssetAmountInput: React.ComponentClass<SelectedAssetAmountInputProps> = connect( + mapStateToProps, + mapDispatchToProps, +)(AmountInput); |