Hacker News new | ask | show | jobs
by ambulancechaser 2431 days 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.
3 comments

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.
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.