Files
status-react/src/react_native/config.cljs
T
2022-11-14 19:16:55 +01:00

9 lines
242 B
Clojure

(ns react-native.config
(:require ["react-native-config" :default react-native-config]))
(def config (js->clj react-native-config :keywordize-keys true))
(defn get-config
([k] (get config k))
([k not-found] (get config k not-found)))