department-of-veterans-affairs/vets-website

View on GitHub
src/applications/accredited-representative-portal/selectors/user.js

Summary

Maintainability
A
0 mins
Test Coverage
export const selectUserIsLoading = state => state.user.profile.loading;
export const selectUserIsLoggedIn = state => state.user.login.currentlyLoggedIn;
export const selectUserProfile = state =>
  selectUserIsLoggedIn(state) ? state.user.profile : null;