Sha256: 77cb58fe692788adfb2503aa665a460a790426767d321552d3c111e7f689687c
Contents?: true
Size: 484 Bytes
Versions: 7
Compression:
Stored size: 484 Bytes
Contents
const snapshotMgmt = state => state.foremanSnapshotManagement; export const selectSnapshots = state => snapshotMgmt(state).snapshots; export const selectIsLoading = state => snapshotMgmt(state).isLoading; export const selectIsWorking = state => snapshotMgmt(state).isWorking; export const selectHasError = state => snapshotMgmt(state).hasError; export const selectError = state => snapshotMgmt(state).error; export const selectNeedsReload = state => snapshotMgmt(state).needsReload;
Version data entries
7 entries across 7 versions & 1 rubygems