摘要:
thetransferPropsTomethod lets you easily push properties into your components to easily customize attributes.From last two exmaples, we have BButton a... 阅读全文
摘要:
To get the add-ons, usereact-with-addons.js(and its minified counterpart) rather than the commonreact.js.https://facebook.github.io/react/docs/addons.... 阅读全文
摘要:
When you're building your React components, you'll probably want to access child properties of the markup.Parentcan read its children by accessing the... 阅读全文
摘要:
When you are using React components you need to be able to access specific references to individual components. This is done by defining aref. ... 阅读全文
摘要:
The owner-ownee relationship is used to designate a parent-child relationship with React components as it differs from the DOM relationship.When one c... 阅读全文
摘要:
State is used for properties on a component thatwill change, versus static properties that are passed in. This lesson will introduce you to taking inp... 阅读全文