blob: bc1dcc59ef745c08e6aadab89e7df9b9e7917ddf (
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/map/elements/GrayLayer";
const mapDispatchToProps = dispatch => {
return {
onClick: () => dispatch(goDownOneInteractionLevel())
};
};
const GrayContainer = connect(
undefined,
mapDispatchToProps
)(GrayLayer);
export default GrayContainer;
|