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