This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-01-10
Channels
- # announcements (1)
- # babashka (9)
- # beginners (372)
- # calva (3)
- # cider (9)
- # cljsrn (71)
- # clojure (57)
- # clojure-australia (2)
- # clojure-europe (26)
- # clojure-france (11)
- # clojure-nl (11)
- # clojurescript (5)
- # core-typed (1)
- # fulcro (33)
- # meander (3)
- # off-topic (1)
- # pathom (3)
- # re-frame (4)
- # reagent (6)
- # sci (1)
- # shadow-cljs (34)
- # xtdb (14)
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.