Sha256: 025541c1c451ce6b41b829699fe13a74591f77f20e5224c4ab2916a127952636
Contents?: true
Size: 296 Bytes
Versions: 109
Compression:
Stored size: 296 Bytes
Contents
export const selectAPIResponse = (state, key) => ({ data: { text: 'some-data', key, }, }); export const selectAPIStatus = (state, key) => 'PENDING'; export const selectAPIByKey = (state, key) => state[key]; export const selectAPIError = (state, key) => ({ error: `${key} ERRROR` });
Version data entries
109 entries across 109 versions & 2 rubygems