import {createSelector} from 'reselect'; import type {HyperState} from '../typings/hyper'; const getTermGroups = ({termGroups}: Pick) => termGroups.termGroups; export const getRootGroups = createSelector(getTermGroups, (termGroups) => Object.keys(termGroups) .map((uid) => termGroups[uid]) .filter(({parentUid}) => !parentUid) );