(props)
| 12 | |
| 13 | class Navigator extends React.Component { |
| 14 | constructor(props) { |
| 15 | super(props); |
| 16 | |
| 17 | this.state = { |
| 18 | categoriesOpened: {}, |
| 19 | scratchPaperOpened: true, |
| 20 | query: '', |
| 21 | }; |
| 22 | } |
| 23 | |
| 24 | componentDidMount() { |
| 25 | const { algorithm } = this.props.current; |
nothing calls this directly
no outgoing calls
no test coverage detected