Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. const AppRouter = () => (
  2. <BrowserRouter>
  3. <Route path="/xd" component={AuthPage} exact={true} />
  4. <Route path="/dashboard/addProduct" component={AddProduct} exact={true} />
  5. <div>
  6. <Header/>
  7. <Navigation/>
  8. <Container maxWidth="lg" >
  9. <Switch>
  10. <Route path="/" component={LandingPage} exact={true} />
  11. <Route path="/xd" component={AuthPage} exact={true} />
  12. <Route component={NotFoundPage} />
  13. </Switch>
  14. </Container>
  15. </div>
  16. </BrowserRouter>
  17. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement