lbry-desktop/ui/component/openInAppLink/index.js

10 lines
220 B
JavaScript
Raw Normal View History

2019-12-06 22:12:48 +01:00
import { connect } from 'react-redux';
import { selectUser } from 'lbryinc';
import OpenInAppLink from './view';
const select = state => ({
user: selectUser(state),
});
export default connect(select)(OpenInAppLink);