index.jsx 616 B

123456789101112131415161718192021222324
  1. import React, { Component } from "react";
  2. // 引入组件
  3. import SaveDataAll from "@containers/BodyContainer";
  4. import PushContainer from '@components/PushContainer';
  5. import style from './index.less';
  6. class BodyContainer extends Component {
  7. constructor() {
  8. super();
  9. }
  10. render() {
  11. const { saveDateAll } = this.props;
  12. //console.log(saveDateAll)
  13. return <div className={style['container'] + ' clearfix'}>
  14. <SaveDataAll saveDateAll={saveDateAll}></SaveDataAll>
  15. <PushContainer></PushContainer>
  16. </div>;
  17. }
  18. }
  19. export default BodyContainer;