forked from huge/frontEnd/hugeOA

1
liuwh
2020-04-06 12d561aea1143eae863d80edebf8b4cbe3cc85df
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
/* 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/page/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">
        <BreadcrumbView data={[{ name: '新建文档' }]} />
        <DocumentEditPage {...this.props}/>
      </div>
    )
  }
}
//export default function DocumentEdit({  }) {
//    return (
//     <div className="document-edit-main">
//
//      </div>
//    )
//}