UNPKG

@thisisagile/easy-react

Version:

Straightforward library building micro applications in react

7 lines (6 loc) 194 B
import { FunctionComponent, ReactNode } from 'react'; export interface IfProps { condition: any | undefined; children?: ReactNode; } export declare const If: FunctionComponent<IfProps>;