2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2019-06-11 20:10:58 +02:00
|
|
|
import { selectFollowedTags } from 'lbry-redux';
|
2017-12-21 22:08:54 +01:00
|
|
|
import DiscoverPage from './view';
|
2017-04-23 11:56:50 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const select = state => ({
|
2019-06-11 20:10:58 +02:00
|
|
|
followedTags: selectFollowedTags(state),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-04-23 11:56:50 +02:00
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
const perform = {};
|
2017-04-23 11:56:50 +02:00
|
|
|
|
2018-08-28 22:46:50 +02:00
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(DiscoverPage);
|