lbry-desktop/web/component/youtubeReferralWelcome/index.js
jessop e3c2919373 rename lbrytv to web
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?
2020-05-25 17:21:02 -04:00

13 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);