code-share/renderer/providers.tsx

33 lines
816 B
TypeScript
Raw Normal View History

2024-02-18 21:14:41 +07:00
import React, { useState } from "react";
import { QueryClientProvider, QueryClient } from "@tanstack/react-query";
2024-02-22 12:14:58 +00:00
import trpc, { getBaseUrl } from "~/lib/trpc";
2024-02-18 21:14:41 +07:00
import { httpBatchLink } from "@trpc/react-query";
type Props = {
children: React.ReactNode;
};
const Providers = ({ children }: Props) => {
2024-02-21 02:01:35 +07:00
const [queryClient] = useState(() => new QueryClient());
2024-02-18 21:14:41 +07:00
const [trpcClient] = useState(() =>
trpc.createClient({
links: [
httpBatchLink({
url: getBaseUrl() + "/api/trpc",
headers() {
return {};
},
}),
],
})
);
return (
<trpc.Provider client={trpcClient} queryClient={queryClient}>
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
</trpc.Provider>
);
};
export default Providers;