UNPKG

react-table-pro

Version:
15 lines (10 loc) 253 B
// @flow import React from 'react'; type PropsType = {| +isRender: boolean, +children: React$Node, |}; export function IsRender(props: PropsType): React$Node { const {isRender, children} = props; return isRender ? children : null; }