mirror of
https://github.com/status-im/status-react.git
synced 2025-02-06 08:05:55 +00:00
13 lines
371 B
Plaintext
13 lines
371 B
Plaintext
|
(ns status-im.subs
|
||
|
(:require-macros [reagent.ratom :refer [reaction]])
|
||
|
(:require [re-frame.core :refer [register-sub]]
|
||
|
status-im.chat.subs
|
||
|
status-im.group-settings.subs
|
||
|
status-im.discovery.subs
|
||
|
status-im.contacts.subs
|
||
|
status-im.new-group.subs))
|
||
|
|
||
|
(register-sub :get
|
||
|
(fn [db [_ k]]
|
||
|
(reaction (k @db))))
|