import React, {Component} from 'react'; import {Flow} from './Flows'; import {Title} from './Title'; import {Sidebar} from './Sidebar'; class App extends Component { constructor(props) { super(props); this.state={ sidebar_title: null, sidebar_content: null, }; } show_sidebar(title,content) { this.setState({ sidebar_title: title, sidebar_content: content, }); } render() { return (