Style fix

This commit is contained in:
Juho Teperi 2018-04-19 19:38:37 +03:00
parent 2e11ccc85b
commit afd422615b

View File

@ -58,11 +58,11 @@
(defn ^boolean reagent-class? [c]
(and (fn? c)
(some? (some-> c .-prototype (.-reagentRender)))))
(some? (some-> c (.-prototype) (.-reagentRender)))))
(defn ^boolean react-class? [c]
(and (fn? c)
(some? (some-> c .-prototype (.-render)))))
(some? (some-> c (.-prototype) (.-render)))))
(defn ^boolean reagent-component? [c]
(some? (.-reagentRender c)))