-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
56 lines (54 loc) · 1.38 KB
/
index.js
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
52
53
54
55
56
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { Header, Navbar, Grid, Row, Col, Button } from 'rsuite';
import { NavProvider, Content as PageContent, Nav } from '../src';
import Content from './component/content';
import './less/index.less';
class App extends Component {
constructor() {
super();
this.state = {
rtl: false
};
}
toggleRtl = () => {
this.setState({
rtl: !this.state.rtl
});
};
render() {
return (
<NavProvider>
<Grid>
<Button onClick={this.toggleRtl}>切换 rtl</Button>
<Row>
<Col md={6}>
<Nav
width={150}
showOrderNumber={false}
rtl={this.state.rtl}
// offset={{
// [this.state.rtl ? 'left' : 'right']: 10,
// top: 50
// }}
scrollBar="left"
deep={3}
once={false}
/>
{/* <Nav>
<Nav.Item title="Title" />
<Nav.Item title="Title2" />
</Nav> */}
</Col>
<Col md={18}>
<PageContent>
<Content />
</PageContent>
</Col>
</Row>
</Grid>
</NavProvider>
);
}
}
ReactDOM.render(<App />, document.getElementById('app'));