feat(web-next): add Next.js 15 app shell with tRPC endpoint

This commit is contained in:
2026-04-06 14:49:43 +02:00
parent 8da107a446
commit 2b9a1adafd
7 changed files with 86 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
"use client";
import { ApiProvider } from "@repo/api-client";
export function Providers({ children }: { children: React.ReactNode }) {
return <ApiProvider trpcUrl="/api/trpc">{children}</ApiProvider>;
}