9 lines
294 B
JavaScript
9 lines
294 B
JavaScript
import { GROUPS_LOCAL_STORAGE_KEY, PROJECTS_LOCAL_STORAGE_KEY } from './constants';
|
|
|
|
export const frequentGroups = (state) => {
|
|
return state.frequentItems[GROUPS_LOCAL_STORAGE_KEY];
|
|
};
|
|
|
|
export const frequentProjects = (state) => {
|
|
return state.frequentItems[PROJECTS_LOCAL_STORAGE_KEY];
|
|
};
|