From 33669c1390d512c32481241f9a63bdbe8a0eaa77 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Over the past several weeks, members of our team, Pete Hunt and Paul O'Shannessy, answered many questions that were asked in the React group. They give a good overview of how to integrate React with other libraries and APIs through the use of Mixins and Lifecycle Methods. Over the past several weeks, members of our team, Pete Hunt and Paul O'Shannessy, answered many questions that were asked in the React group. They give a good overview of how to integrate React with other libraries and APIs through the use of Mixins and Lifecycle Methods.React Snippets
-
diff --git a/docs/jsx-in-depth.html b/docs/jsx-in-depth.html
index 51dbf50329..8cf7c07ebc 100644
--- a/docs/jsx-in-depth.html
+++ b/docs/jsx-in-depth.html
@@ -243,14 +243,14 @@ React in mind. The two valid uses of JSX are:
var div = React.DOM.div;
var app = <div className="appClass">Hello, React!</div>;
To construct an instance of a composite component, create a variable that references the class.
var MyComponent = React.createClass({/*...*/});
var app = <MyComponent someProperty={true} />;
See Component Basics to learn more about components.
+See Multiple Components to learn more about using composite components.
Note:
diff --git a/docs/tutorial.html b/docs/tutorial.html index 89e5db8418..f171d9c229 100644 --- a/docs/tutorial.html +++ b/docs/tutorial.html @@ -783,7 +783,7 @@Congrats!
-You have just built a comment box in a few simple steps. Learn more about React in the reference or start hacking! Good luck!
+You have just built a comment box in a few simple steps. Learn more about why to use React, or dive into the API reference and start hacking! Good luck!
diff --git a/downloads.html b/downloads.html index d09a30bd69..4cd75db903 100644 --- a/downloads.html +++ b/downloads.html @@ -78,9 +78,11 @@JSX Transform
-The JSX transformer used to support XML syntax in JavaScript.
+The JSX transformer used to support XML syntax in JavaScript.
+<script src="http://fb.me/JSXTransformer-0.4.1.js"></script>All scripts are also available via CDNJS.
+Bower
diff --git a/feed.xml b/feed.xml index 5551d5ddb0..859c3b664f 100644 --- a/feed.xml +++ b/feed.xml @@ -440,7 +440,7 @@ If you were using React without JSX previously, your code should still work.< <h2>React Snippets</h2> -<p>Over the past several weeks, members of our team, <a href="http://www.petehunt.net/">Pete Hunt</a> and <a href="http://zpao.com/">Paul O'Shannessy</a>, answered many questions that were asked in the <a href="https://groups.google.com/forum/#!forum/reactjs">React group</a>. They give a good overview of how to integrate React with other libraries and APIs through the use of <a href="/react/docs/mixins.html">Mixins</a> and <a href="/react/docs/advanced-components.html">Lifecycle Methods</a>.</p> +<p>Over the past several weeks, members of our team, <a href="http://www.petehunt.net/">Pete Hunt</a> and <a href="http://zpao.com/">Paul O'Shannessy</a>, answered many questions that were asked in the <a href="https://groups.google.com/forum/#!forum/reactjs">React group</a>. They give a good overview of how to integrate React with other libraries and APIs through the use of <a href="/react/docs/reusable-components.html">Mixins</a> and <a href="/react/docs/working-with-the-browser.html">Lifecycle Methods</a>.</p> <blockquote> <p><a href="https://groups.google.com/forum/#!topic/reactjs/l6PnP8qbofk">Listening Scroll Event</a></p> diff --git a/jsx-compiler.html b/jsx-compiler.html index 3caccd3fea..331d4e162f 100644 --- a/jsx-compiler.html +++ b/jsx-compiler.html @@ -54,7 +54,7 @@$ bower install --save reactJSX Compiler
- This tool demonstrates how JSX syntax + This tool demonstrates how JSX syntax is desguared into native JavaScript.