UNPKG

loop-modules

Version:

Shared modules for the Loop product suite.

12 lines (11 loc) 353 B
export var initialState = { entries: [], selectedEntries: [], active: undefined }; export function getEmployees(state$) { return state$.select(function (state) { return state.employees.entries; }); } export function getSelectedEmployees(state$) { return state$.select(function (state) { return state.employees.selectedEntries; }); }