Merge pull request #250 from danprince/master

Fixes require typo in readme example
This commit is contained in:
Matthew Jaoudi 2016-07-09 06:26:53 -07:00 committed by GitHub
commit d00bca01f8
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ You mount the component into the DOM like this:
```clj
(defn mountit []
(reagent/render-component [childcaller]
(.-body js/document)))
(r/render-component [childcaller]
(.-body js/document)))
```
assuming we have imported Reagent like this: