Update ComponentNotRerendering.md

This commit is contained in:
Mike Thompson 2018-02-27 16:02:41 +11:00 committed by GitHub
parent 9b18f2b7ca
commit 65ef4f17ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ If a ratom changes but your Component doesn't update, then the gotchas to look o
If the props to a Component change, but it doesn't appear to re-render, then the cause will be this rookie mistake: you forgot to repeat the parameters in the inner, anonymous render function.
```
```clj
(defn outer
[a b c] ;; <--- parameters
;; ....