mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-27 23:41:29 +00:00
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);
|