How to customize TouchableOpacity and reuse in each component
问题 I am trying to customize TouchableOpacity with below style <TouchableOpacity onPress={() => { navigate("EnableNotification"); }} > <View style={{ backgroundColor: "#FE434C", alignItems: "center", justifyContent: "center", borderRadius: 10, width: 240, marginTop: 30, height: 40 }} > <Text style={{ color: "white" }}>CONTINUE</Text> </View> </TouchableOpacity> I have this TouchableOpacity in each component. I want something like customize this view in one js file & reuse this. Wherever I want to