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?
9 lines
220 B
JavaScript
9 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);
|