lbry-desktop/ui/component/livestreamComments/index.js

10 lines
289 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { selectIsFetchingComments } from 'redux/selectors/comments';
import LivestreamComments from './view';
2021-10-11 08:02:17 +02:00
const select = (state) => ({
fetchingComments: selectIsFetchingComments(state),
});
export default connect(select)(LivestreamComments);