lbry-desktop/ui/js/page/discover/index.js

18 lines
364 B
JavaScript
Raw Normal View History

2017-04-23 11:56:50 +02:00
import React from 'react'
import {
connect
} from 'react-redux'
import {
selectFeaturedContentByCategory
} from 'selectors/content'
import DiscoverPage from './view'
const select = (state) => ({
featuredContentByCategory: selectFeaturedContentByCategory(state),
})
const perform = (dispatch) => ({
})
export default connect(select, perform)(DiscoverPage)