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({