From f6d8bdede7aab212756f85e9833b80ac97091b08 Mon Sep 17 00:00:00 2001 From: mbeaulne Date: Tue, 24 Mar 2026 15:49:12 -0400 Subject: [PATCH] Adds recently viewed --- src/routes/Dashboard/DashboardRecentlyViewedView.tsx | 3 +++ src/routes/router.ts | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 src/routes/Dashboard/DashboardRecentlyViewedView.tsx diff --git a/src/routes/Dashboard/DashboardRecentlyViewedView.tsx b/src/routes/Dashboard/DashboardRecentlyViewedView.tsx new file mode 100644 index 000000000..c5e97e96c --- /dev/null +++ b/src/routes/Dashboard/DashboardRecentlyViewedView.tsx @@ -0,0 +1,3 @@ +export function DashboardRecentlyViewedView() { + return <>placeholder; +} diff --git a/src/routes/router.ts b/src/routes/router.ts index 6771b2eca..aecabcf56 100644 --- a/src/routes/router.ts +++ b/src/routes/router.ts @@ -19,6 +19,7 @@ import { BASE_URL, IS_GITHUB_PAGES } from "@/utils/constants"; import RootLayout from "../components/layout/RootLayout"; import { DashboardFavoritesView } from "./Dashboard/DashboardFavoritesView"; import { DashboardLayout } from "./Dashboard/DashboardLayout"; +import { DashboardRecentlyViewedView } from "./Dashboard/DashboardRecentlyViewedView"; import Editor from "./Editor"; import Home from "./Home"; import { ImportPage } from "./Import"; @@ -135,7 +136,7 @@ const dashboardFavoritesRoute = createRoute({ const dashboardRecentlyViewedRoute = createRoute({ getParentRoute: () => dashboardRoute, path: "/recently-viewed", - component: ComingSoon, + component: DashboardRecentlyViewedView, }); const quickStartRoute = createRoute({