Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/routes/Dashboard/DashboardRecentlyViewedView.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function DashboardRecentlyViewedView() {
return <>placeholder</>;
}
3 changes: 2 additions & 1 deletion src/routes/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -135,7 +136,7 @@ const dashboardFavoritesRoute = createRoute({
const dashboardRecentlyViewedRoute = createRoute({
getParentRoute: () => dashboardRoute,
path: "/recently-viewed",
component: ComingSoon,
component: DashboardRecentlyViewedView,
});

const quickStartRoute = createRoute({
Expand Down
Loading