forked from huge/frontEnd/hugeOA

Mr Ke
2020-04-29 2ea56ed08b58386f0612635101b1acd51cd4a44c
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
/* eslint-disable */
/**kelq
 * 4/29/2020, 2:13:58 PM
 * doc comment for the file goes here
 */
 
/** 浏览日志 */
import React, { ReactNode, ReactEventHandler, Component } from 'react';
import BrowseLogPage from '../../components/page/logManage/browseLog';
 
export default class BrowseLog extends Component {
 constructor(props) {
    super(props);
    this.config = {
    };
    this.state = {
    };
  }
 
  componentWillMount() { }
 
  componentDidMount() { }
 
  componentDidShow() { }
 
  render() {
    return (
      <div className="browse-log-page-main">
        <BrowseLogPage />
      </div>
    )
  }
}