Fork me on GitHub
#clojurescript
<
2021-01-10
>
cheel02:01:57

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.

hadils21:01:39

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-himik21:01:30

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-himik21:01:09

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

hadils21:01:59

Thank you very much @U2FRKM4TW!

👍 3