Sha256: ef44d353dd3cc1b3c6cf1188950a0b412857b1ecdd91a04c2dc1a090f88df59b
Contents?: true
Size: 447 Bytes
Versions: 8
Compression:
Stored size: 447 Bytes
Contents
import { selectAPIStatus, selectAPIError, selectAPIResponse, } from 'foremanReact/redux/API/APISelectors'; import CONTENT_VIEWS_KEY from './ContentViewsConstants'; export const selectContentViews = state => selectAPIResponse(state, CONTENT_VIEWS_KEY) || {}; export const selectContentViewStatus = state => selectAPIStatus(state, CONTENT_VIEWS_KEY); export const selectContentViewError = state => selectAPIError(state, CONTENT_VIEWS_KEY);
Version data entries
8 entries across 8 versions & 1 rubygems