From b47214253641ce6343d7981130fd99beb4171bd5 Mon Sep 17 00:00:00 2001 From: apanizo Date: Tue, 8 May 2018 13:45:00 +0200 Subject: [PATCH] WA-238 Withdrawn Review component --- .../safe/component/Withdrawn/Review.jsx | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/routes/safe/component/Withdrawn/Review.jsx diff --git a/src/routes/safe/component/Withdrawn/Review.jsx b/src/routes/safe/component/Withdrawn/Review.jsx new file mode 100644 index 00000000..a2fee94c --- /dev/null +++ b/src/routes/safe/component/Withdrawn/Review.jsx @@ -0,0 +1,25 @@ +// @flow +import * as React from 'react' +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 { DESTINATION_PARAM, VALUE_PARAM } from './withdrawn' + +type FormProps = { + values: Object, +} + +const Review = () => ({ values }: FormProps) => ( + + Review the Withdrawn Operation + + Destination: {values[DESTINATION_PARAM]} + + + Value in ETH: {values[VALUE_PARAM]} + + +) + +export default Review