UNPKG

react-extras

Version:

Useful components and utilities for working with React

9 lines 287 B
import React from 'react'; import PropTypes from 'prop-types'; const If = props => props.condition ? props.render ? props.render() : props.children : null; If.propTypes = { condition: PropTypes.bool.isRequired, children: PropTypes.node, render: PropTypes.func }; export default If;