This commit is contained in:
2019-08-05 21:23:17 -04:00
parent a9f4324f29
commit 1e464de7e8
42 changed files with 837 additions and 165 deletions

View File

@@ -0,0 +1,13 @@
import { createSelector } from 'reselect';
const getState = (state) => state;
export const getActiveEventId = createSelector(
[getState],
(state) => state.get('activeEvent'),
);
export const hasActiveEvent = createSelector(
[getState],
(state) => !!state.get('activeEvent'),
);