UNPKG

@yookue/react-condition

Version:

Render components conditionally for react

7 lines (6 loc) 225 B
import React from 'react'; export type DoProps = React.PropsWithChildren<{ condition: () => boolean | number | string | undefined | null; render?: (index: number) => React.ReactNode; }>; export declare const Do: any;