forked from nsjcy/frontEnd/nsjcy

LAPTOP-RI7D261L\Mr Ke
2020-02-03 db3fdea847234226f6721fa347e667c267e16343
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
39
40
41
/**
 * 李鸿章<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>
//     );
//   }
 
// }