index.js
876 Bytes
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
42
43
44
45
46
47
48
49
50
51
import React, { Component } from 'react'
import { NavBar, Icon } from 'antd-mobile';
import shareHide from "../../utils/shareHide";
/*ReactDOM.render(
<div>
<NavBar
mode="light"
icon={<Icon type="left" />}
onLeftClick={() => console.log('onLeftClick')}
rightContent={[
<Icon key="1" type="ellipsis" />,
]}
>NavBar</NavBar>
</div>
, root);*/
export default class HeaderNav extends Component{
constructor(){
super();
this.state={
select:0
}
}
componentDidMount(){
shareHide();
}
render(){
return (
<div>
<NavBar
mode="light"
icon={<Icon type="left" />}
onLeftClick={() => console.log('onLeftClick')}
rightContent={[
<Icon key="1" type="ellipsis" />,
]}
>NavBar</NavBar>
</div>
)
}
}