2019-12-05 06:24:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doOpenModal } from 'redux/actions/app';
|
2020-06-15 22:33:03 +02:00
|
|
|
import { selectUser } from 'redux/selectors/user';
|
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),
|
|
|
|
});
|
|
|
|
|
2020-03-24 21:51:16 +01:00
|
|
|
export default connect(select, {
|
|
|
|
doOpenModal,
|
|
|
|
})(YoutubeWelcome);
|