UNPKG

@yookue/react-condition

Version:

Render components conditionally for react

7 lines (6 loc) 245 B
import React from 'react'; export type MapIteratorProps = React.PropsWithChildren<{ of: Map<any, any> | ReadonlyMap<any, any>; render?: (value: any, key: any, index: number) => React.ReactNode; }>; export declare const MapIterator: any;