UNPKG

react-hoc-modal

Version:
7 lines (6 loc) 206 B
import { type ReactNode } from "react"; export interface FooterProps { children: ReactNode; } declare const Footer: ({ children }: FooterProps) => import("react").ReactPortal | null; export { Footer };