feat(belo): add analysis page with historical stats, chart, and date range picker
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { BeloAnalysisPage } from "@/features/belo/BeloAnalysisPage";
|
||||
|
||||
export const Route = createFileRoute("/_authenticated/quotes/belo/analysis")({
|
||||
component: BeloAnalysisPage,
|
||||
});
|
||||
@@ -0,0 +1,6 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { BeloPage } from "@/features/belo/BeloPage";
|
||||
|
||||
export const Route = createFileRoute("/_authenticated/quotes/belo/")({
|
||||
component: BeloPage,
|
||||
});
|
||||
@@ -1,6 +1,5 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { BeloPage } from "@/features/belo/BeloPage";
|
||||
import { Outlet, createFileRoute } from "@tanstack/react-router";
|
||||
|
||||
export const Route = createFileRoute("/_authenticated/quotes/belo")({
|
||||
component: BeloPage,
|
||||
component: Outlet,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user