Hello all I did use search but I couldnt find anything that solved this problem. I need two navbars one for most pages and one for a specific set of routes
code
  <BrowserRouter>
        <Header />
        <Switch>
          <Route exact path="/" component={() => <div>home</div>} />
          <Route exact path="/services" component={() => <div>services</div>} />
        </Switch>
  </BrowserRouter>
I need something that would say render all routes except /services/* because /services/* has different
I thought about changing things inside Header but there will be too many changes it would be easier to have different component.
 
    