What will be the output of following snippet? Technology Community › Category: React Native › What will be the output of following snippet? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Problem const ComponentScreen = () => { const someArray = ['1', '2', '3'] return ( <View> <Text>{someArray}</Text> </View> ) } export default ComponentScreen; 123