The ThirdwebProvider is component is a provider component that sets up the React Query client.
import { ThirdwebProvider } from "thirdweb/react"; function Example() { return ( <ThirdwebProvider> <App /> </ThirdwebProvider> );}
function ThirdwebProvider(props: { children?: ReactNode }): Element;
The props for the ThirdwebProvider
let props: { children?: ReactNode };
let returnType: Element;