react router v7 framework and trpc
How can I use trpc inside react router v7 framework project?
routes.tsimport { type RouteConfig, index } from "@react-router/dev/routes";
import { route } from "@react-router/dev/routes";
export default [
index("routes/home.tsx"),
route("subscriptions", "routes/subscriptions.tsx"),
] satisfies RouteConfig;