How to hide navbar in login or signup page reactn router
问题 I am using react-router v4 I am creating SPA using that so my navigation menu comes in all page but I don't want it to appear in my login or sign up page. is there anyway to do it?I used localStorage but due to that it remains hidden always below in my route ReactDOM.render( <Provider store={store}> <BrowserRouter basename="/sephoraweb"> <div> <HeaderContainer /> <Route exact path="/" component={LoginContainer} hideNavBar={true} /> <Route path="/signUp" component={SignUpContainer} /> </div> <