Sha256: 72342fafa4bccd9b3eae6e12103e249ff7cfc1f8c1139c65d47191f239800830
Contents?: true
Size: 553 Bytes
Versions: 106
Compression:
Stored size: 553 Bytes
Contents
import { selectAPIStatus, selectAPIError, selectAPIResponse, } from 'foremanReact/redux/API/APISelectors'; import { STATUS } from 'foremanReact/constants'; import { COPY_CONTENT_VIEW_KEY } from '../ContentViewsConstants'; export const selectCopyContentViews = state => selectAPIResponse(state, COPY_CONTENT_VIEW_KEY) || {}; export const selectCopyContentViewStatus = state => selectAPIStatus(state, COPY_CONTENT_VIEW_KEY) || STATUS.PENDING; export const selectCopyContentViewError = state => selectAPIError(state, COPY_CONTENT_VIEW_KEY);
Version data entries
106 entries across 106 versions & 1 rubygems