2019-12-05 06:24:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doOpenModal } from 'redux/actions/app';
|
2019-12-06 17:03:11 +01:00
|
|
|
import { selectUser } from 'lbryinc';
|
2019-12-05 06:24:54 +01:00
|
|
|
import YoutubeWelcome from './view';
|
|
|
|
|
2019-12-06 17:03:11 +01:00
|
|
|
const select = state => ({
|
|
|
|
user: selectUser(state),
|
|
|
|
});
|
|
|
|
|
2019-12-05 06:24:54 +01:00
|
|
|
export default connect(
|
2019-12-06 17:03:11 +01:00
|
|
|
select,
|
2019-12-05 06:24:54 +01:00
|
|
|
{
|
|
|
|
doOpenModal,
|
|
|
|
}
|
|
|
|
)(YoutubeWelcome);
|