From fd06b48aa864e81ed5195bd57f9691bc70f8a1bd Mon Sep 17 00:00:00 2001 From: apanizo Date: Thu, 13 Sep 2018 17:10:10 +0200 Subject: [PATCH] Creating first step component: SafeName --- .../open/components/SafeNameForm/index.jsx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/routes/open/components/SafeNameForm/index.jsx diff --git a/src/routes/open/components/SafeNameForm/index.jsx b/src/routes/open/components/SafeNameForm/index.jsx new file mode 100644 index 00000000..71f506b7 --- /dev/null +++ b/src/routes/open/components/SafeNameForm/index.jsx @@ -0,0 +1,21 @@ +// @flow +import * as React from 'react' +import Paragraph from '~/components/layout/Paragraph' +import OpenPaper from '../OpenPaper' + +const SafeNameForm = () => () => ( + + + This setup will create a Safe with one or more owners. Optionally give the Safe a local name. + By continuing you consent with the terms of use and privacy policy. + + + ● I understand that my funds are held securely in my Safe. They cannot be accessed by Gnosis. + + + ● My Safe is a smart contract on the Ethereum blockchain. + + +) + +export default SafeNameForm