This commit is contained in:
Leo 2017-01-07 17:56:29 -05:00
parent 6284a3bd86
commit db0063362c

View file

@ -44,7 +44,7 @@ Components can be used by using a convention of uppercasing the first letter of
```javascript
m.mount(document.body, <MyComponent />)
// equivalent to m.mount(document.body, m(Component))
// equivalent to m.mount(document.body, m(MyComponent))
```
---