'use client'; import { api } from '@repo/client'; import { Button } from '@repo/ui/components/button'; import { useState } from 'react'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { httpBatchLink } from '@trpc/client'; function HomeContent() { const [name, setName] = useState(''); const helloQuery = api.hello.useQuery(name || undefined); return (