import { connect } from 'umi'; import ProductionPlanComponent from '../../components/ProductionPlan/ProductionPlan'; function ProductionPlan({ dispatch, app, content }) { const ProductionPlanBillProps = { app, content, dispatch, }; return ( ); } export default connect(({ app, content }) => ({ app, content }))(ProductionPlan);