Initial open-source release

This commit is contained in:
Will Chen
2025-04-11 09:37:05 -07:00
commit 43f67e0739
208 changed files with 45476 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { createRoute } from "@tanstack/react-router";
import { rootRoute } from "./root";
import AppDetailsPage from "../pages/app-details";
import { z } from "zod";
export const appDetailsRoute = createRoute({
getParentRoute: () => rootRoute,
path: "/app-details",
component: AppDetailsPage,
validateSearch: z.object({
appId: z.number().optional(),
}),
});