11 lines
292 B
JavaScript
11 lines
292 B
JavaScript
|
import React from "react";
|
||
|
import { connect } from "react-redux";
|
||
|
import { doNavigate } from "actions/app";
|
||
|
import NsfwOverlay from "./view";
|
||
|
|
||
|
const perform = dispatch => ({
|
||
|
navigateSettings: () => dispatch(doNavigate("/settings")),
|
||
|
});
|
||
|
|
||
|
export default connect(null, perform)(NsfwOverlay);
|