mirror of
https://github.com/status-im/status-react.git
synced 2025-03-02 19:40:49 +00:00
10 lines
246 B
Clojure
10 lines
246 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)))
|