From 67552e211f850badcc79ce0aad4922d23c497441 Mon Sep 17 00:00:00 2001 From: apanizo Date: Wed, 23 May 2018 16:33:35 +0200 Subject: [PATCH] WA-238 Review TX component --- .../component/Transactions/ReviewTx/index.jsx | 33 +++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/src/routes/safe/component/Transactions/ReviewTx/index.jsx b/src/routes/safe/component/Transactions/ReviewTx/index.jsx index fde267f2..b7bfb110 100644 --- a/src/routes/safe/component/Transactions/ReviewTx/index.jsx +++ b/src/routes/safe/component/Transactions/ReviewTx/index.jsx @@ -1,8 +1,37 @@ // @flow import * as React from 'react' +import { CircularProgress } from 'material-ui/Progress' +import Block from '~/components/layout/Block' +import Bold from '~/components/layout/Bold' +import Heading from '~/components/layout/Heading' +import Paragraph from '~/components/layout/Paragraph' +import { TX_NAME_PARAM, TX_DESTINATION_PARAM, TX_VALUE_PARAM } from '~/routes/safe/component/Transactions/transactions' -const ReviewTx = () => () => ( -
ReviewTx
+type FormProps = { + values: Object, + submitting: boolean, +} + +const spinnerStyle = { + minHeight: '50px', +} + +const ReviewTx = () => ({ values, submitting }: FormProps) => ( + + Review the Multisig Tx + + Transaction Name: {values[TX_NAME_PARAM]} + + + Destination: {values[TX_DESTINATION_PARAM]} + + + Amount to transfer in ETH: {values[TX_VALUE_PARAM]} + + + { submitting && } + + ) export default ReviewTx