lbry-desktop/web/component/openInAppLink/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

10 lines
220 B
JavaScript

import { connect } from 'react-redux';
import { selectUser } from 'lbryinc';
import OpenInAppLink from './view';
const select = state => ({
user: selectUser(state),
});
export default connect(select)(OpenInAppLink);