/* eslint-disable */
|
/**柯礼钦
|
* 4/6/2020, 11:50:58 AM
|
* doc comment for the file goes here
|
*/
|
|
/** 行业热点知识库 */
|
import React, { ReactNode, ReactEventHandler, Component } from 'react';
|
import BreadcrumbView from '../BreadcrumbView';
|
import TableView from '../TableView';
|
|
import { Tabs } from 'antd';
|
|
const { TabPane } = Tabs;
|
|
import './index.scss';
|
|
export default class HotListTableView extends Component {
|
constructor(props) {
|
super(props);
|
this.config = {
|
};
|
this.state = {
|
};
|
}
|
|
componentWillMount() { }
|
|
componentDidMount() { }
|
|
render() {
|
return (
|
<div className="hot-list-table-view-main">
|
<BreadcrumbView data={[{ name: '行业热点知识库' }]} />
|
<div className="hot-list-table-view-main-content">
|
<Tabs defaultActiveKey="1" >
|
<TabPane tab="Tab 1" key="1">
|
Content of Tab Pane 1
|
</TabPane>
|
<TabPane tab="Tab 2" key="2">
|
Content of Tab Pane 2
|
</TabPane>
|
<TabPane tab="Tab 3" key="3">
|
Content of Tab Pane 3
|
</TabPane>
|
</Tabs>
|
</div>
|
</div>
|
)
|
}
|
}
|