We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 082822d commit f3c4375Copy full SHA for f3c4375
template/src/App.re
@@ -86,12 +86,14 @@ let app = () =>
86
<SafeAreaView>
87
<ScrollView
88
contentInsetAdjustmentBehavior=`automatic style={styles##scrollView}>
89
+ {Global.hermesInternal->Belt.Option.isNone
90
+ ? React.null
91
+ : <View style=styles##engine>
92
+ <Text style=styles##footer>
93
+ "Engine: Hermes"->React.string
94
+ </Text>
95
+ </View>}
96
<Header />
- // {global.HermesInternal == null ? null : (
- // <View style={styles##engine}>
- // <Text style={styles##footer}>Engine: Hermes</Text>
- // </View>
- // )}
97
<View style={styles##body}>
98
<View style={styles##sectionContainer}>
99
<Text style={styles##sectionTitle}>
0 commit comments