15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doOpenModal } from 'redux/actions/app';
|
|
import { selectUser } from 'lbryinc';
|
|
import YoutubeWelcome from './view';
|
|
|
|
const select = state => ({
|
|
user: selectUser(state),
|
|
});
|
|
|
|
export default connect(
|
|
select,
|
|
{
|
|
doOpenModal,
|
|
}
|
|
)(YoutubeWelcome);
|