import React from 'react'; import { connect } from 'umi'; import ProductionScheduleComponentInfo from '../../components/productionSchedule/productionSchedule'; function ProductionScheduleInfo({ dispatch, app, content }) { function removePane(changePanes, currentPane) { dispatch({ type: 'app/removePane', payload: { changePanes, currentPane } }); } const productionPlanProps = { app, content, dispatch, onRemovePane: removePane, }; return ( ); } export default connect(({ app, content }) => ({ app, content }))(ProductionScheduleInfo);