UNPKG

@coin-voyage/paykit

Version:

Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.

8 lines (7 loc) 231 B
import { ReactNode } from "react"; interface PortalProps { selector?: string; children: ReactNode; } declare const Portal: ({ selector, children }: PortalProps) => import("react").ReactPortal | null; export default Portal;