Files
remark42/web/app/components/user-info/user-info.getters.js
T

3 lines
191 B
JavaScript

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