Embeds another thirdweb-supported site for seamless in-app and ecosystem wallet connection.
import { SiteEmbed } from "thirdweb/react"; <SiteEmbed src="https://thirdweb.com" clientId="thirdweb-client-id"/>;
function SiteEmbed( props: { client: ThirdwebClient; ecosystem?: Ecosystem; src: string; } & ClassAttributes<HTMLIFrameElement> & IframeHTMLAttributes<HTMLIFrameElement>,): Element;
The props to pass to the iframe
let props: { client: ThirdwebClient; ecosystem?: Ecosystem; src: string;} & ClassAttributes<HTMLIFrameElement> & IframeHTMLAttributes<HTMLIFrameElement>;
let returnType: Element;