├── .eslintrc ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── src └── app │ ├── api │ └── wait │ │ └── route.ts │ ├── layout.tsx │ ├── lib │ ├── HydrationStreamProvider.tsx │ └── ReactQueryStreamedHydration.tsx │ ├── page.tsx │ └── providers.tsx └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next", "prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/app/api/wait/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/src/app/api/wait/route.ts -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/lib/HydrationStreamProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/src/app/lib/HydrationStreamProvider.tsx -------------------------------------------------------------------------------- /src/app/lib/ReactQueryStreamedHydration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/src/app/lib/ReactQueryStreamedHydration.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trpc/use-client-stream-hydration/HEAD/tsconfig.json --------------------------------------------------------------------------------