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.
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!
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.
> 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.
Thank you very much @p-himik!