lbry-desktop/ui/page/livestreamCurrent/index.js
2021-07-19 10:12:57 -04:00

10 lines
243 B
JavaScript

import { connect } from 'react-redux';
import { selectUser } from 'redux/selectors/user';
import LivestreamCurrent from './view';
const select = (state) => ({
user: selectUser(state),
});
export default connect(select)(LivestreamCurrent);