Embeds another thirdweb-supported site for seamless in-app and ecosystem wallet connection.
import { SiteEmbed } from "thirdweb/react"; <SiteEmbed src="https://thirdweb.com" client={thirdwebClient} ecosystem={{ id: "ecosystem.thirdweb" }}/>;
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;