Creating first step component: SafeName

This commit is contained in:
apanizo 2018-09-13 17:10:10 +02:00
parent 29c9b786fa
commit fd06b48aa8
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
// @flow
import * as React from 'react'
import Paragraph from '~/components/layout/Paragraph'
import OpenPaper from '../OpenPaper'
const SafeNameForm = () => () => (
<OpenPaper>
<Paragraph size="md" color="primary">
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.
</Paragraph>
<Paragraph size="md" color="primary" weight="bolder">
&#9679; I understand that my funds are held securely in my Safe. They cannot be accessed by Gnosis.
</Paragraph>
<Paragraph size="md" color="primary" weight="bolder">
&#9679; My Safe is a smart contract on the Ethereum blockchain.
</Paragraph>
</OpenPaper>
)
export default SafeNameForm