3 lines
191 B
JavaScript
3 lines
191 B
JavaScript
export const getUserComments = (state, userId) => state.userComments[userId] || null;
|
|
export const getIsLoadingUserComments = (state, userId) => state.isLoadingUserComments[userId] || false;
|