27f346d8f1
It was not meant to be used for these cases -- wasting resources creating and going through the cache for each simple direct access.
4 lines
206 B
JavaScript
4 lines
206 B
JavaScript
const selectState = (state) => state.auth || {};
|
|
|
|
export const selectAuthToken = (state) => selectState(state).authToken;
|
|
export const selectIsAuthenticating = (state) => selectState(state).authenticating;
|