UNPKG

react-planner

Version:

react-planner is a React Component for plans design. Draw a 2D floorplan and navigate it in 3D mode.

15 lines (12 loc) 344 B
import React from 'react'; import PropTypes from 'prop-types'; /** * @return {null} */ export default function If({condition, style, children}) { return condition ? ( Array.isArray(children) ? <div style={style}>{children}</div> : children ) : null; } If.propTypes = { condition: PropTypes.bool.isRequired, style: PropTypes.object };