children-prop-type
v1.0.0
Published
http://stackoverflow.com/a/42122662
Downloads
5
Readme
children-prop-type
http://stackoverflow.com/a/42122662
usage
import children from 'children-prop-type';
class MyComponent from Component {
static propTypes = {
children: children(PropTypes.node)
};
...
}
Alternatively combine with element-is-prop-type
to specify the actually components that are passed in as children.