mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-29 16:31:33 +00:00
9 lines
278 B
JavaScript
9 lines
278 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doNavigate } from 'redux/actions/navigation';
|
|
import NsfwOverlay from './view';
|
|
|
|
const perform = dispatch => ({
|
|
navigateSettings: () => dispatch(doNavigate('/settings')),
|
|
});
|
|
|
|
export default connect(null, perform)(NsfwOverlay);
|