aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-content.component.js
blob: 2d1fa52e9ce12e279e0bd42fdaecf0b5c7b8c707 (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
24
import React, { Component } from 'react'
import PageContainerContent from '../../page-container/page-container-content.component'
import SendFromRow from './send-from-row/send-from-row.container'
import SendToRow from './send-to-row/send-to-row.container'
import SendAmountRow from './send-amount-row/send-amount-row.container'
import SendGasRow from './send-gas-row/send-gas-row.container'

export default class SendContent extends Component {

  render () {
    console.log('111222333444555666777888999')
    return (
      <PageContainerContent>
        <div className='.send-v2__form'>
          <SendFromRow />
          <SendToRow />
          <SendAmountRow />
          <SendGasRow />
        </div>
      </PageContainerContent>
    );
  }

}