UNPKG

react-conditional-components-renderer

Version:
12 lines (11 loc) 275 B
import { ReactElement } from 'react'; export interface IOtherwise { children: ReactElement; } export interface IInCaseOf { test: boolean; children: ReactElement; } export interface IChoice { children: ReactElement<IInCaseOf>[] | ReactElement<IOtherwise>[]; }