mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Import defaults in send_/
This commit is contained in:
parent
8ff60267d8
commit
44679f6cda
1
ui/app/components/send_/index.js
Normal file
1
ui/app/components/send_/index.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
export { default } from './send.container'
|
@ -1,7 +1,7 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import SendRowWrapper from '../send-row-wrapper/send-row-wrapper.component'
|
import SendRowWrapper from '../send-row-wrapper/'
|
||||||
import AmountMaxButton from './amount-max-button/amount-max-button.container'
|
import AmountMaxButton from './amount-max-button/'
|
||||||
import CurrencyDisplay from '../../../send/currency-display'
|
import CurrencyDisplay from '../../../send/currency-display'
|
||||||
|
|
||||||
export default class SendAmountRow extends Component {
|
export default class SendAmountRow extends Component {
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PageContainerContent from '../../page-container/page-container-content.component'
|
import PageContainerContent from '../../page-container/page-container-content.component'
|
||||||
import SendAmountRow from './send-amount-row/send-amount-row.container'
|
import SendAmountRow from './send-amount-row/'
|
||||||
import SendFromRow from './send-from-row/send-from-row.container'
|
import SendFromRow from './send-from-row/'
|
||||||
import SendGasRow from './send-gas-row/send-gas-row.container'
|
import SendGasRow from './send-gas-row/'
|
||||||
import SendToRow from './send-to-row/send-to-row.container'
|
import SendToRow from './send-to-row/'
|
||||||
|
|
||||||
export default class SendContent extends Component {
|
export default class SendContent extends Component {
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import AccountListItem from '../../account-list-item/account-list-item.container'
|
import AccountListItem from '../../account-list-item/'
|
||||||
|
|
||||||
export default class SendDropdownList extends Component {
|
export default class SendDropdownList extends Component {
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import AccountListItem from '../../../account-list-item/account-list-item.container'
|
import AccountListItem from '../../../account-list-item/'
|
||||||
import SendDropdownList from '../../send-dropdown-list/send-dropdown-list.component'
|
import SendDropdownList from '../../send-dropdown-list/'
|
||||||
|
|
||||||
export default class FromDropdown extends Component {
|
export default class FromDropdown extends Component {
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import SendRowWrapper from '../send-row-wrapper/send-row-wrapper.component'
|
import SendRowWrapper from '../send-row-wrapper/'
|
||||||
import FromDropdown from './from-dropdown/from-dropdown.component'
|
import FromDropdown from './from-dropdown/'
|
||||||
|
|
||||||
export default class SendFromRow extends Component {
|
export default class SendFromRow extends Component {
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import SendRowWrapper from '../send-row-wrapper/send-row-wrapper.component'
|
import SendRowWrapper from '../send-row-wrapper/'
|
||||||
import GasFeeDisplay from '../../../send/gas-fee-display-v2'
|
import GasFeeDisplay from '../../../send/gas-fee-display-v2'
|
||||||
|
|
||||||
export default class SendGasRow extends Component {
|
export default class SendGasRow extends Component {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import SendRowErrorMessage from './send-row-error-message/send-row-error-message.container'
|
import SendRowErrorMessage from './send-row-error-message/'
|
||||||
|
|
||||||
export default class SendRowWrapper extends Component {
|
export default class SendRowWrapper extends Component {
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import SendRowWrapper from '../send-row-wrapper/send-row-wrapper.component'
|
import SendRowWrapper from '../send-row-wrapper/'
|
||||||
import EnsInput from '../../../ens-input'
|
import EnsInput from '../../../ens-input'
|
||||||
|
|
||||||
export default class SendToRow extends Component {
|
export default class SendToRow extends Component {
|
||||||
|
@ -6,9 +6,9 @@ import {
|
|||||||
doesAmountErrorRequireUpdate,
|
doesAmountErrorRequireUpdate,
|
||||||
} from './send.utils'
|
} from './send.utils'
|
||||||
|
|
||||||
import SendHeader from './send-header/send-header.container'
|
import SendHeader from './send-header/'
|
||||||
import SendContent from './send-content/send-content.component'
|
import SendContent from './send-content/'
|
||||||
import SendFooter from './send-footer/send-footer.container'
|
import SendFooter from './send-footer/'
|
||||||
|
|
||||||
export default class SendTransactionScreen extends PersistentForm {
|
export default class SendTransactionScreen extends PersistentForm {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user