selectors.ts 246 B

123456789101112
  1. import { createSelector } from 'reselect'
  2. const selectGlobal = (state) => state.register
  3. const makeSelectSignupLoading = () => createSelector(
  4. selectGlobal,
  5. (globalState) => globalState.signupLoading
  6. )
  7. export {
  8. makeSelectSignupLoading
  9. }