UNPKG

control-flow-react

Version:
9 lines (8 loc) 296 B
import type { ReactNode } from "react"; interface iForProps { each: any[] | undefined | null; children: (item: any, index: number) => any; emptyState?: ReactNode | string | null; } export declare const For: ({ each, children, emptyState, }: iForProps) => ReactNode | null; export {};