import React, { Component } from "react"; import Navigation from "./Navigation"; import Main from "./Main"; import Login from "./Login"; import { withRouter } from "react-router-dom"; type Props = { login: boolean } class App extends Component { render() { const { login} = this.props; if(login) { return (
); } else { return (
); } } } export default withRouter(App);