intervention-pages
Version:
7 lines (6 loc) • 334 B
JavaScript
import { createSelector } from 'reselect';
import { InterventionOverview } from './interventionOverview.models';
import { currentIntervention } from '../../common/selectors';
export const selectInterventionOverview = createSelector(currentIntervention, (intervention) => {
return new InterventionOverview(intervention);
});