Docs

React

If you are building a react app you can use the /react export.

Basic Setup

import { createClient } from "thirdweb";
import { ThirdwebProvider, ConnectWallet } from "thirdweb/react";
const client = createClient({
clientId: "<your-client-id>",
});
function App() {
return (
<ThirdwebProvider client={client}>
<ConnectWallet />
<YourApp />
</ThirdwebProvider>
);
}

Available Components

Available Hooks