showing results for - "react children only expected to receive a single react element child"
Gabriela
18 May 2018
1/* Some components require to have just one children element inside,
2So the solution is to wrap the elements inside the parent element with a 
3<View></View> or a react fragment <> </> 
4
5Example:
6*/
7
8<TouchableWithoutFeedback>
9	<View>
10		//your elements
11	</View>
12</TouchableWithoutFeedback>
13
14