UNPKG

@yookue/react-condition

Version:

Render components conditionally for react

7 lines (6 loc) 236 B
import React from 'react'; export type ObjectIteratorProps<T extends object> = React.PropsWithChildren<{ of: T; render?: (value: any, key: string, index: number) => React.ReactNode; }>; export declare const ObjectIterator: any;