blob: 11f5314290f26215e3f3f6eb02342a01ff143586 (
plain)
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
|
import React, { Component } from 'react'
// import { Link } from 'react-router-dom'
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import actions from 'app/actions'
import Script from '../components/sidebar/script.component.js'
import TableOfContents from '../components/sidebar/tableOfContents.component.js'
export default class Sidebar extends Component {
state = {
mode: "toc",
}
render() {
if (this.state.mode === "toc") {
return (
<div className='sidebar'>
<button onClick={() => this.setState({ mode: "script" })}>
+
</button>
<TableOfContents />
</div>
)
}
return (
<div className='sidebar'>
<Script />
<button onClick={() => this.setState({ mode: "toc" })}>
x
</button>
</div>
)
}
}
|