feat: Move over features from zrx-buyer

This commit is contained in:
fragosti
2018-10-10 18:27:06 -07:00
parent a5a033c359
commit 19f61906d3
16 changed files with 321 additions and 55 deletions

View File

@@ -1,5 +1,8 @@
import * as React from 'react';
import { SelectedAssetBuyButton } from '../containers/selected_asset_buy_button';
import { SelectedAssetInstantHeading } from '../containers/selected_asset_instant_heading';
import { ColorOption } from '../style/theme';
import { BuyButton } from './buy_button';
@@ -12,9 +15,9 @@ export interface ZeroExInstantContainerProps {}
export const ZeroExInstantContainer: React.StatelessComponent<ZeroExInstantContainerProps> = props => (
<Container hasBoxShadow={true} width="350px" backgroundColor={ColorOption.white} borderRadius="3px">
<Flex direction="column" justify="flex-start">
<InstantHeading />
<SelectedAssetInstantHeading />
<OrderDetails />
<BuyButton />
<SelectedAssetBuyButton />
</Flex>
</Container>
);