INNER CODE UNIT · JavaScript
BottomPanel
nicholasjackson/fake-service · ui/src/components/bottom_panel/index.js:9
class BottomPanel extends React.Component {
constructor(props) {
super(props)
this.state = {
show: false
}
this.descriptionClicked = this.descriptionClicked.bind(this)
this.closeClick = this.closeClick.bind(this)
PubSub.subscribe("description_clicked", this.descriptionClicked)
}
descriptionClicked(msg, e) {
this.setState({description: e.data, show: true})
}