import React, { Component } from 'react'; import { Layout, Panel, NavDrawer, AppBar } from 'react-toolbox'; import style from './style'; import Navigation from './Navigation'; export default class App extends Component { constructor (props) { super(props); this.state = { drawerActive: false }; this.toggleDrawerActive = () => { this.setState({ drawerActive: !this.state.drawerActive }); }; } render () { return (