forked from huge/frontEnd/hugeOA

Mr Ke
2020-10-20 6bf92751fe8dfa0624285268968a1fd7a8a7e7e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* eslint-disable */
/**liuwh
 * 4/6/2020, 3:51:13 PM
 * doc comment for the file goes here
 */
 
/** Happy Coding */
import React, { ReactNode, ReactEventHandler, Component } from 'react';
// import { Link } from 'react-router-dom';
// import { Icon } from 'antd';
import BreadcrumbView from '../../../components/common/BreadcrumbView';
import DocumentEditPage from '../../../components/oa/DocumentEditPage'
 
export default class DocumentEdit extends Component {
  constructor(props) {
    super(props);
    this.config = {
    };
    this.state = {
    };
  }
 
  componentWillMount() { }
 
  componentDidMount() {
    console.log()
  }
 
  componentDidShow() { }
 
  render() {
    return (
      <div className="document-edit-main h-100 flex-box-column">
        <div className="flex-1">
          <DocumentEditPage {...this.props} />
        </div>
      </div>
    )
  }
}
//export default function DocumentEdit({  }) {
//    return (
//     <div className="document-edit-main">
//
//      </div>
//    )
//}