aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/zero_ex_instant_container.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-10-05 08:47:32 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-10-05 08:48:10 +0800
commit98f8c7749433e63d7fea3c4e932db1f251607e4d (patch)
tree7118d4d967079a1768539ae19d35b30f6ab42c26 /packages/instant/src/components/zero_ex_instant_container.tsx
parentd9b7aa2e4ba088b4dda1b1d2956de5d267a0674e (diff)
downloaddexon-0x-contracts-98f8c7749433e63d7fea3c4e932db1f251607e4d.tar
dexon-0x-contracts-98f8c7749433e63d7fea3c4e932db1f251607e4d.tar.gz
dexon-0x-contracts-98f8c7749433e63d7fea3c4e932db1f251607e4d.tar.bz2
dexon-0x-contracts-98f8c7749433e63d7fea3c4e932db1f251607e4d.tar.lz
dexon-0x-contracts-98f8c7749433e63d7fea3c4e932db1f251607e4d.tar.xz
dexon-0x-contracts-98f8c7749433e63d7fea3c4e932db1f251607e4d.tar.zst
dexon-0x-contracts-98f8c7749433e63d7fea3c4e932db1f251607e4d.zip
Add BuyButton and other small improvement
Diffstat (limited to 'packages/instant/src/components/zero_ex_instant_container.tsx')
-rw-r--r--packages/instant/src/components/zero_ex_instant_container.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/instant/src/components/zero_ex_instant_container.tsx b/packages/instant/src/components/zero_ex_instant_container.tsx
index efda6ecaf..d6df3ccc0 100644
--- a/packages/instant/src/components/zero_ex_instant_container.tsx
+++ b/packages/instant/src/components/zero_ex_instant_container.tsx
@@ -2,6 +2,7 @@ import * as React from 'react';
import { ColorOption } from '../style/theme';
+import { BuyButton } from './buy_button';
import { InstantHeading } from './instant_heading';
import { OrderDetails } from './order_details';
import { Container, Flex, Text } from './ui';
@@ -12,5 +13,6 @@ export const ZeroExInstantContainer: React.StatelessComponent<ZeroExInstantConta
<Flex direction="column" width="350px" justify="flex-start">
<InstantHeading />
<OrderDetails />
+ <BuyButton />
</Flex>
);