diff --git a/index.md b/index.md
index 2ccbb676..8f054324 100644
--- a/index.md
+++ b/index.md
@@ -39,8 +39,12 @@ id: home
React components implement a `render()` method that takes input data and
returns what to display. This example uses an XML-like syntax called
JSX. Input data that is passed into the component can be accessed by
- `render()` via `this.props`.
- JSX is optional and not required to use React.
+ `render()` via `this.props`.
+
+ JSX is optional and not required to use React. Try + clicking on "Compiled JS" to see the raw JavaScript code produced by + the JSX compiler.
@@ -50,8 +54,7 @@ id: home In addition to taking input data (accessed via `this.props`), a component can maintain internal state data (accessed via `this.state`). When a component's state data changes, the rendered markup will be - updated by re-invoking `render()`.