@yannvahalewyn I was just looking at the JS version of that. I have a crappy reimplementation of half of Tailwind in my project, so I have been looking around for options.
@joshmiller glad to show an option. Was it useful / would you do it differently?
Good luck!
I’m getting a tad confused with components/classes/elements today.
(defn root []
...
[:> nav/NavigationContainer
[:> Navigator
[:> Screen {:name "Home" :component (r/reactify-component home-view/component)}]]]_
(defn start []
(expo/render-root (r/as-element [:f> root])))
There’s a good mix of :>
, :f>
, reactify-component
, as-element
, etc.. I get the gist, but does anyone know of a good resource that explains the differences? I’m also looking for the documentation about those :>
, I don’t know how these are called (reagent special keywords syntactic sugar thingies) making googling a bit tricky 🙃@lepistane thanks for the name! It’s not in the wiki and can’t find anything about beak operators though. @joshmiller I’m doing that too ofc 🙂
alright i misplaced the info 🙂 it's in re-natal https://github.com/drapanjanas/re-natal/wiki/FAQ
some of it is in reagent https://github.com/reagent-project/reagent/blob/master/doc/ReactFeatures.md this will be important for u https://github.com/reagent-project/reagent/blob/master/doc/InteropWithReact.md @yannvahalewyn
Thanks!
beak operator in reagent https://github.com/reagent-project/reagent i think it's in the wiki rest is explained there as well