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

13 lines
286 B
JavaScript
Raw Normal View History

2019-04-01 01:04:01 +02:00
import { connect } from 'react-redux';
import { selectRecentHistory } from 'redux/selectors/content';
import RecentUserHistory from './view';
const select = (state, props) => ({
history: selectRecentHistory(state),
});
export default connect(
select,
null
)(RecentUserHistory);