Sha256: 731d287df5115746cecc2e64ae32d9c61d06faf282158f2dc6e502a7e9714c0e
Contents?: true
Size: 567 Bytes
Versions: 99
Compression:
Stored size: 567 Bytes
Contents
import { selectAPIStatus, selectAPIError, selectAPIResponse, } from 'foremanReact/redux/API/APISelectors'; import { STATUS } from 'foremanReact/constants'; import { CREATE_CONTENT_VIEW_KEY } from '../ContentViewsConstants'; export const selectCreateContentViews = state => selectAPIResponse(state, CREATE_CONTENT_VIEW_KEY) || {}; export const selectCreateContentViewStatus = state => selectAPIStatus(state, CREATE_CONTENT_VIEW_KEY) || STATUS.PENDING; export const selectCreateContentViewError = state => selectAPIError(state, CREATE_CONTENT_VIEW_KEY);
Version data entries
99 entries across 99 versions & 1 rubygems