UNPKG

react-hoc-modal

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