メインコンテンツまでスキップ

Either

Either(props, context?): null | ReactElement<any, any>

条件式がtrue/falseで出力する内容を切り替えるコンポーネント

Example

<Either
test={someCondition}
match={'testの条件式がtrueの時の出力内容'}
not={'testの条件式がfalseの時の出力内容'}
/>

Parameters

NameType
propsObject
props.matchReactNode
props.notReactNode
props.test?null | boolean
context?any

Returns

null | ReactElement<any, any>