aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-amount-row/send-amount-row.selectors.js
blob: fb08c7ed74c15a54b7bebbe16c45f8ee22ff3c1c (plain) (blame)
1
2
3
4
5
6
7
8
9
const selectors = {
  sendAmountIsInError,
}

module.exports = selectors

function sendAmountIsInError (state) {
  return Boolean(state.send.errors.amount)
}