Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | 181x 181x 181x 181x 181x 181x | import { createSelector } from '@ngrx/store';
 
import { getCustomerState } from 'ish-core/store/customer/customer-store';
 
const getSsoRegistrationState = createSelector(getCustomerState, state => state.ssoRegistration);
 
export const getSsoRegistrationError = createSelector(getSsoRegistrationState, state => state.error);
 
export const getSsoRegistrationRegistered = createSelector(getSsoRegistrationState, state => state.registered);
 
export const getSsoRegistrationCancelled = createSelector(getSsoRegistrationState, state => state.cancelled);
  |