import { createSelector } from 'reselect';
import { currentIntervention } from '../../common/selectors';
export const selectInterventionResultLinks = createSelector(currentIntervention, (intervention) => {
return (intervention && intervention.result_links) || null;
});