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', }) }}> */}
kowl监控
kafka消息可视化工具
{/*
*/}
{/*
{ history.push({ pathname: '/facility/other/pghero', }) }}> */}
pghero
PostgreSQL 性能监控工具
{/*
*/}
{/*
{ history.push({ pathname: '/facility/other/es', }) }}> */}
es监控
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);