Browse Source

update namespaced component to adapt with the v0.12

main
Pedro Nauck 10 years ago
parent
commit
f876868e9e
  1. 8
      docs/02.1-jsx-in-depth.md

8
docs/02.1-jsx-in-depth.md

@ -136,10 +136,10 @@ JSX will take care to make the things right when compile your code.
```javascript
var App = (
Form(null,
Form.Row(null,
Form.Label(null),
Form.Input(null)
React.createElement(Form, null,
React.createElement(Form.Row, null,
React.createElement(Form.Label, null),
React.createElement(Form.Input, null)
)
)
);

Loading…
Cancel
Save