| | |
| | | |
| | | /** 首页 -- 工作台 */ |
| | | import React, { ReactNode, ReactEventHandler, Component } from 'react'; |
| | | // import { Link } from 'react-router-dom'; |
| | | // import { Icon } from 'antd'; |
| | | import BreadcrumbView from '../../components/common/BreadcrumbView'; |
| | | import WorkbenchPage from '../../components/page/workbench' |
| | | |
| | | export default class Workbench extends Component { |
| | | constructor(props) { |
| | |
| | | |
| | | render() { |
| | | return ( |
| | | <div className="workbench-main"> |
| | | |
| | | <div className="workbench-page-main"> |
| | | <BreadcrumbView data={[{ name: '工作台' }]} /> |
| | | <WorkbenchPage /> |
| | | </div> |
| | | ) |
| | | } |
| | | } |
| | | //export default function Workbench({ }) { |
| | | // return ( |
| | | // <div className="workbench-main"> |
| | | // |
| | | // </div> |
| | | // ) |
| | | //} |
| | | |