Skip to content

Instantly share code, notes, and snippets.

@BrianLitwin
Last active August 7, 2019 14:26
Show Gist options
  • Save BrianLitwin/54d2c2da6ee59a204af77ac32a3c8bf5 to your computer and use it in GitHub Desktop.
Save BrianLitwin/54d2c2da6ee59a204af77ac32a3c8bf5 to your computer and use it in GitHub Desktop.
;; A
(rf/reg-sub
:account/sleeve-min
(fn [_ [_ id]]
(let [sleeve @(rf/subscribe [:account/sleeve id])]
(:min-amount sleeve 1000))))
;; B
(sleeve-min [id]
(let [sleeve @(rf/subscribe [:account/sleeve id])]
(:min-amount sleeve 1000))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment