top | item 21301049

(no title)

ambulancechaser | 6 years ago

How can you use hooks right now? The standard is reagent which compiles down to classes which don't work with hooks. I think reagent has given a functional react and hooks style programming for years but now is a little behind the curve.

discuss

order

orestis|6 years ago

There’s a library called hx that embraces hooks and the native React way. You still write hiccup, but you get a React functional component.

capableweb|6 years ago

You would do what Reagent does and use JS interop yourself and call React directly. Plenty of people in Clojure-land implement things themselves if the thing to implement seems simple enough. Probably more true for Clojure developers than let's say JS/Ruby developers.