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

14 lines
550 B
JavaScript
Raw Permalink Normal View History

2020-03-18 13:11:37 -04:00
import { connect } from 'react-redux';
import { selectHasChannels, selectFetchingMyChannels } from 'redux/selectors/claims';
import { selectActiveChannelClaim } from 'redux/selectors/app';
import { doSetActiveChannel } from 'redux/actions/app';
2020-03-18 17:14:11 -04:00
import CreatorDashboardPage from './view';
2020-03-18 13:11:37 -04:00
const select = (state) => ({
hasChannels: selectHasChannels(state),
2020-03-18 13:11:37 -04:00
fetchingChannels: selectFetchingMyChannels(state),
activeChannelClaim: selectActiveChannelClaim(state),
2020-03-18 13:11:37 -04:00
});
export default connect(select, { doSetActiveChannel })(CreatorDashboardPage);