element-prop-types
v1.0.3
Published
React PropType for props-elements
Downloads
6
Maintainers
Readme
element-prop-types
React PropTypes for props-elements
Install
npm install --save element-prop-types
Usage
const ElementPropTypes = require('element-prop-types');
const Modal = ({ header, items }) => (
<div>
<div>{header}</div>
<div>{items}</div>
</div>
);
Modal.propTypes = {
header: ElementPropTypes.elementOf(Header).isRequired,
items: PropTypes.arrayOf(ElementPropTypes.elementOf(Item))
};
// render Modal
React.render(
<Modal
header={<Header title="This is modal" />}
items={[
<Item/>,
<Item/>,
<Item/>
]}
/>,
rootElement
);
API
elementOf(Component)
checks the type of a React element