Creating first step component: SafeName
This commit is contained in:
parent
29c9b786fa
commit
fd06b48aa8
|
@ -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">
|
||||
● 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">
|
||||
● My Safe is a smart contract on the Ethereum blockchain.
|
||||
</Paragraph>
|
||||
</OpenPaper>
|
||||
)
|
||||
|
||||
export default SafeNameForm
|
Loading…
Reference in New Issue