UNPKG

react-rif

Version:

Simple component for conditional rendering on react

8 lines (7 loc) 181 B
import * as React from 'react'; interface IRIfProps { if: boolean; children?: React.ReactNode; } export declare function R(props: IRIfProps): JSX.Element; export {};