Browse Source

update namespaced component to adapt with the v0.12

main
Pedro Nauck 11 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 ```javascript
var App = ( var App = (
Form(null, React.createElement(Form, null,
Form.Row(null, React.createElement(Form.Row, null,
Form.Label(null), React.createElement(Form.Label, null),
Form.Input(null) React.createElement(Form.Input, null)
) )
) )
); );

Loading…
Cancel
Save