Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
218 Bytes
import { createSelector } from 'reselect';
const selectCollection = state => state.collection;
export const selectCollectionData = createSelector(
[selectCollection],
collection => collection.collection
);