2019-12-05 00:24:54 -05:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doOpenModal } from 'redux/actions/app';
|
2020-06-15 16:33:03 -04:00
|
|
|
import { selectUser } from 'redux/selectors/user';
|
2019-12-05 00:24:54 -05:00
|
|
|
import YoutubeWelcome from './view';
|
|
|
|
|
2019-12-06 11:03:11 -05:00
|
|
|
const select = state => ({
|
|
|
|
user: selectUser(state),
|
|
|
|
});
|
|
|
|
|
2020-03-24 16:51:16 -04:00
|
|
|
export default connect(select, {
|
|
|
|
doOpenModal,
|
|
|
|
})(YoutubeWelcome);
|