import { useAppBridge } from "@saleor/app-sdk/app-bridge"; import { PropsWithChildren } from "react"; import { Provider } from "urql"; import { createClient } from "../lib/graphql"; export function GraphQLProvider(props: PropsWithChildren<{}>) { const { appBridgeState } = useAppBridge(); const saleorApiUrl = appBridgeState?.saleorApiUrl!; const client = createClient(saleorApiUrl, async () => ({ token: appBridgeState?.token!, })); return ; }