| 12345678910111213141516171819202122232425 |
- import * as React from "react";
- import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
- import Reports from "./Reports.js";
- import CloudCostReports from "./cloudCostReports.js";
- const Routes = () => {
- return (
- <Router>
- <Switch>
- <Route exact path="/">
- <Reports />
- </Route>
- <Route exact path="/allocation">
- <Reports />
- </Route>
- <Route exact path="/cloud">
- <CloudCostReports />
- </Route>
- </Switch>
- </Router>
- );
- };
- export default Routes;
|