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>
);
}