File size: 218 Bytes
f5071ca |
1 2 3 4 5 6 7 8 |
import { createSelector } from 'reselect';
const selectCollection = state => state.collection;
export const selectCollectionData = createSelector(
[selectCollection],
collection => collection.collection
); |