mirror of
https://github.com/status-im/status-react.git
synced 2025-01-18 23:12:56 +00:00
d54d6555a4
Former-commit-id: 5a3b923b0c32e5e900b89e984393822ce6a15abc
9 lines
295 B
Clojure
9 lines
295 B
Clojure
(ns syng-im.components.invertible-scroll-view)
|
|
|
|
(set! js/window.InvertibleScrollView (js/require "react-native-invertible-scroll-view"))
|
|
|
|
(defn invertible-scroll-view [props]
|
|
(js/React.createElement js/InvertibleScrollView
|
|
(clj->js (merge {:inverted true} props))))
|
|
|