/**
|
* 李鸿章<lihz@hugeinfo.com.cn>
|
* 2018年5月17日 05:31
|
*
|
*/
|
|
|
import React from 'react';
|
// import { Link } from 'react-router-dom';
|
// import { Modal } from 'antd-mobile';
|
// import { Icon } from 'antd';
|
import tree from 'hife/tree';
|
|
import './style.scss';
|
|
export default function IndexView({ loading }) {
|
return (
|
<div className="index-view-main">
|
IndexView
|
</div>
|
);
|
|
}
|
|
// export default class IndexView extends React.Component {
|
// constructor(props) {
|
// super(props);
|
// this.state = {
|
// value: ''
|
// };
|
// }
|
|
// render() {
|
// return (
|
// <div className="index-view-main">
|
// IndexView
|
// </div>
|
// );
|
// }
|
|
// }
|