import { issPageValues } from "@/router/router-constants/issPage-values"; import { navigationScenarios } from "@/router/router-constants/navigation-scenarios"; // Get store from router/index.js instead of importing it here to get updated values const routingTable = function(store) { return [ { issPageValue: issPageValues.VEHICLE_YEAR, maps: [ { scenario: navigationScenarios.CLICKED_BACK, destinationIssPageValue: issPageValues.WELCOME_PAGE }, ], }, { issPageValue: issPageValues.WELCOME_PAGE, maps: [ { scenario: navigationScenarios.CLICKED_FORWARD, destinationIssPageValue: issPageValues.VEHICLE_YEAR, }, { scenario: navigationScenarios.CLICKED_TEST, destinationUrl: "https://www.google.com" } ] }, ]; }; export { routingTable };