diff --git a/react.md b/react.md
index c42a7d5ab..22f256bed 100644
--- a/react.md
+++ b/react.md
@@ -141,14 +141,14 @@ layout: default
### Propagating properties to children
- var CheckLink = React.createClass({
+ var VideoPlayer = React.createClass({
render: function() {
- // transferPropsTo() will take any props passed to CheckLink
- // and copy them to
- return this.transferPropsTo({'√ '}{this.props.children});
+ return ;
}
});
+
+
### Mixins
var TickTock = React.createClass({