clojurescript

ClojureScript, a dialect of Clojure that compiles to JavaScript http://clojurescript.org | Currently at 1.10.879
cheel 2021-01-10T02:39:57.248100Z

I'm building a little clojurescript gui app using electron-js to talk to a command-line tool. https://github.com/rorokimdim/stash-gui If anyone wants to contribute code or help let me know. I'm a hobby clojure programmer doing this just for fun in my free time. It's very likely you know more clojure than i do. Also, wondering if there are more example apps out there that do something similar that I can refer to.

hadils 2021-01-10T21:08:39.250500Z

Noob questions aboue re-frame and react native: What does [:> mean in the code? How about [:<>? How do I invoke a method of a React Native component in CLJS? Thanks in advance!

p-himik 2021-01-10T21:10:30.250700Z

It's not re-frame related, it's from Reagent. :> is like calling reagent.core/adapt-react-class on the second element. :<> creates React fragment.

p-himik 2021-01-10T21:11:09.250900Z

> How do I invoke a method of a React Native component in CLJS? Find a way to do it in JS and then just use interop to do the same in CLJS.

hadils 2021-01-10T21:13:59.251200Z

Thank you very much @p-himik!

👍 1