Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
572 Bytes
import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
import { compose } from "redux";
import { selectIsTVFetching } from "../../Redux/TVShow/tv-selectors";
import WithSpinnerTVShows from "../WithSpinner/WithSpinnerTVShows";
import CollectionGrid from "./CollectionGrid";
const mapStateToProps = createStructuredSelector({
isTVGridLoading: selectIsTVFetching
});
const CollectionGridTVShows = compose(
connect(mapStateToProps),
WithSpinnerTVShows
)(CollectionGrid);
export default CollectionGridTVShows;