如https://facebook.github.io/react-native/docs/communication-ios#passing-properties-from-native-to-react-native中所述,在React Native应用程序中,可以将初始props从本机端传递到根组件。
鉴于下面的CLJS代码,人们将如何获取根组件的初始道具?
(defn app-root []
; root component
)
(.registerComponent react/app-registry "AppName" #(reagent/reactify-component app-root))