What is the best way to handle additional React.PropType.func properties?
Should I provide a default noop for it (if this is the best way) or should I just check if support is defined?
propTypes: { onClick: React.PropTypes.func }, someMethod: function() { if (this.props.onClick) { this.props.onClick(); } }
lanan source share