e3c2919373
language and API consts improve customization custom homepages get config from .env.default custom title and logo small changes add pinned item to sidebar rebase?
12 lines
291 B
JavaScript
12 lines
291 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);
|