reagent

A minimalistic ClojureScript interface to React.js http://reagent-project.github.io/
Karol Wójcik 2020-07-19T22:14:01.046200Z

r/reactify-component turns the display-name to "reagent-id". Is it possible to bind a different display-name?

p-himik 2020-07-20T08:04:00.046300Z

Seems like this is how the name is generated:

name (or (:displayName fmap)
                 (util/fun-name render-fun)
                 (str (gensym "reagent")))
Try adding :display-name metadata to your function.

p-himik 2020-07-20T08:04:28.046500Z

Or try naming the function.