summaryrefslogtreecommitdiff
path: root/src/containers/app/map/GrayContainer.js
blob: a22ef3c8fff4d72117386eef3afe1ee5b0d3a628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import {connect} from "react-redux";
import {goDownOneInteractionLevel} from "../../../actions/interaction-level";
import GrayLayer from "../../../components/app/map/elements/GrayLayer";

const mapDispatchToProps = dispatch => {
    return {
        onClick: () => dispatch(goDownOneInteractionLevel())
    };
};

const GrayContainer = connect(
    undefined,
    mapDispatchToProps
)(GrayLayer);

export default GrayContainer;