Merge pull request #1712 from mathieumg/master

Added example of objectOf usage in documentation.
This commit is contained in:
Cheng Lou
2014-06-17 20:55:13 -07:00
+3
View File
@@ -51,6 +51,9 @@ React.createClass({
// An array of a certain type
optionalArrayOf: React.PropTypes.arrayOf(React.PropTypes.number),
// An object with property values of a certain type
optionalObjectOf: React.PropTypes.objectOf(React.PropTypes.number),
// An object taking on a particular shape
optionalObjectWithShape: React.PropTypes.shape({
color: React.PropTypes.string,