2017-06-26 19:30:24 +05:30
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
2017-08-30 08:48:32 -04:00
|
|
|
import { doNavigate } from "actions/navigation";
|
2017-06-26 19:30:24 +05:30
|
|
|
import NsfwOverlay from "./view";
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
|
|
|
navigateSettings: () => dispatch(doNavigate("/settings")),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(null, perform)(NsfwOverlay);
|