Last active
August 7, 2019 14:26
-
-
Save BrianLitwin/54d2c2da6ee59a204af77ac32a3c8bf5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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