aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-content.component.js
blob: e213cfcf38d6fe763bc998fac977432c36a7580c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React, { Component } from 'react'
import PageContainerContent from '../../page-container/page-container-content.component'
import SendAmountRow from './send-amount-row/send-amount-row.container'
import SendFromRow from './send-from-row/send-from-row.container'
import SendGasRow from './send-gas-row/send-gas-row.container'
import SendToRow from './send-to-row/send-to-row.container'

export default class SendContent extends Component {

  render () {
    return (
      <PageContainerContent>
        <div className="send-v2__form">
          <SendFromRow />
          <SendToRow />
          <SendAmountRow />
          <SendGasRow />
        </div>
      </PageContainerContent>
    )
  }

}