import { OidcSecure } from "@axa-fr/react-oidc"; import { FunctionComponent } from "react"; import { Route, Routes } from "react-router-dom"; import { AboutContainer } from "./features/about/About"; import { CounterContainer } from "./features/examples/counter/Counter"; import { Tenders } from "./features/examples/tenders/Tenders"; import { HomeContainer } from "./features/home/Home"; type Props = {}; export const ROUTE_KEYS = { home: "", about: "about", counter: "counter", tenders: "tenders", }; export const AppRoutes: FunctionComponent = () => { const { home, about, counter, tenders } = ROUTE_KEYS; return ( } /> } /> } /> {/* a route with authentication */} } /> {/* } /> */} {/* }> } /> } /> } /> */} {/* */} ); };