second route for historical calendar page

This commit is contained in:
Avraham Sakal
2024-06-23 17:48:11 -04:00
parent 819ca5733f
commit 7dd43b0a34
+4 -1
View File
@@ -17,7 +17,10 @@ export function App() {
<Router>
<Route path="/" component={HistoricalCalendarPrices} />
<Route path="/calendar-optimizer" component={CalendarOptimizer} />
{/* <Route path="/historical-calendar-prices" component={HistoricalCalendarPrices} /> */}
<Route
path="/historical-calendar-prices"
component={HistoricalCalendarPrices}
/>
<Route default component={NotFound} />
</Router>
</main>