blob: d6df3ccc0925f45889fadd44ffca3d1080f1436c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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';
export interface ZeroExInstantContainerProps {}
export const ZeroExInstantContainer: React.StatelessComponent<ZeroExInstantContainerProps> = props => (
<Flex direction="column" width="350px" justify="flex-start">
<InstantHeading />
<OrderDetails />
<BuyButton />
</Flex>
);
|