You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defuidynamic-component [{:keys [my-component props]}]
;; support fully dynamic
(defui-call
(my-component props))
(defui-call;; allow keys to be provided for efficiency.;; not sure about this syntax.
(my-component props [:foo:bar]))
(defui-call;; also support literal maps
(my-component {:foo foo
:bar bar}))
)
The text was updated successfully, but these errors were encountered:
phronmophobic
changed the title
Add better support for dynanic component calls in defui
Add better support for dynamic component calls in defui
Oct 7, 2022
Defui should support something like
The text was updated successfully, but these errors were encountered: