From 126a7f5c110cf38d54a41d9c387cd975fc3a9e37 Mon Sep 17 00:00:00 2001 From: petehunt Date: Fri, 12 Jul 2013 15:14:13 -0700 Subject: [PATCH] more jsx handholding --- docs/docs/refactor/02-displaying-data.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/docs/refactor/02-displaying-data.md b/docs/docs/refactor/02-displaying-data.md index ae80882286..8725d866c6 100644 --- a/docs/docs/refactor/02-displaying-data.md +++ b/docs/docs/refactor/02-displaying-data.md @@ -69,4 +69,6 @@ We strongly believe that components are the right way to separate concerns rathe We've found that the best solution for this problem is to generate markup directly from the JavaScript code such that you can use all of the expressive power of a real programming language to build UIs. In order to make this easier, we've added a *very* simple, **optional** HTML-like syntax for the function calls that generate markup called JSX. -JSX is very small; the example above uses every feature of JSX. To learn more about it, see [JSX in depth](./02.1-jsx-in-depth.md). \ No newline at end of file +JSX is very small; the example above uses every feature of JSX. To learn more about it, see [JSX in depth](./02.1-jsx-in-depth.md). Or see the transform in action in [our live JSX compiler](/react/jsx-compiler.html). + +The easiest way to get started with JSX is to use the in-browser `JSXTransformer`, but in production you'll want to precompile your code using our command-line [react-tools](http://npmjs.org/package/react-tools) package. \ No newline at end of file