import React, { useEffect } from 'react';
import { connect } from 'react-redux';
const SetControl = (props) => {
const { dispatch, actions, clientHeight, history, pomsKowl, pomsPghero, pomsEs } = props
useEffect(() => {
}, [])
return (
{/*
{
history.push({ pathname: '/facility/other/kowl', })
}}> */}
{/*
*/}
{/*
{
history.push({ pathname: '/facility/other/pghero', })
}}> */}
{/*
*/}
{/*
{
history.push({ pathname: '/facility/other/es', })
}}> */}
{/*
*/}
)
}
function mapStateToProps (state) {
const { auth, global, members, webSocket } = state;
return {
clientHeight: global.clientHeight,
pomsKowl: global.pomsKowl,
pomsPghero: global.pomsPghero,
pomsEs: global.pomsEs,
};
}
export default connect(mapStateToProps)(SetControl);