1 2 3 4 5 6 7 8 9 10 11
const { getSendErrors } = require('../send.selectors') const selectors = { isSendFormInError, } module.exports = selectors function isSendFormInError (state) { return Object.values(getSendErrors(state)).some(n => n) }