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
| /* eslint-disable */
| /**柯礼钦
| * 4/6/2020, 10:34:31 AM
| * doc comment for the file goes here
| */
|
| /** 首页--工作台 */
| import React, { ReactNode, ReactEventHandler, Component } from 'react';
| import NotifyList from '../../../common/NotifyList'; //通知列表
| import TopListTableView from '../../../common/TopListTableView'; //榜单列表
| import HotListTableView from '../../../common/HotListTableView'; //行业热点知识库
|
| import './index.scss';
|
|
| export default class Workbench extends Component {
| constructor(props) {
| super(props);
| this.config = {
| };
| this.state = {
| };
| }
|
| componentWillMount() { }
|
| componentDidMount() { }
|
| render() {
| return (
| <div className="workbench-main">
| <NotifyList />
| <TopListTableView />
| <HotListTableView />
| </div>
| )
| }
| }
|
|