You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optional way to create normal Reagent components from functions using some keyword, like :n>:$. Would work the same way as [comp], but the keyword would make it possible to find the calls.
Namespaced keyword would be even better, but would be quite verbose.
Provide function based API to optionally replace Hiccup syntax (like om.dom, helix.dom).
The text was updated successfully, but these errors were encountered:
Form-2 components are marked by clj-kondo as unused binding
(defn outer
[a b c] ;; <--- those parameters will get marked by clj-kondo as unused-binding
;; ....
(fn [a b c] ;; <--- they are repeated here
[:div
(str a b c)]))
clj-kondo/clj-kondo#25
:n>
:$
. Would work the same way as[comp]
, but the keyword would make it possible to find the calls.The text was updated successfully, but these errors were encountered: