UNPKG

react-conditional-components-renderer

Version:
10 lines (9 loc) 304 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Switch = (props) => { const child = props.children.find((child) => { return child.props.identifier === props.case ? child : null; }); return child ? child : props.default; }; exports.default = Switch;