quotationPack.js 637 Bytes
/**
 * Created by mar105 on 2019-01-08.
 */
import React from 'react';
import { connect } from 'dva';
import QuotationPack from '../../../components/QuoQuotation/QuotationPack/QuotationPack';

function QuotationComponent({ dispatch, app, content }) {
  function removePane(changePanes, currentPane) {
    dispatch({ type: 'app/removePane', payload: { changePanes, currentPane } });
  }

  const commonBillProps = {
    app,
    content,
    dispatch,
    onRemovePane: removePane,
  };
  return (
    <QuotationPack {...commonBillProps} />
  );
}

export default connect(({ app, content }) =>
  ({ app, content }))(QuotationComponent);