Kizspy | Question: 9 (Choose 1 answer)
Study the code below and choose the correct output that you will expect to see on the emulator.
import React from 'react';
import { Text, View } from 'react-native';
const Dog = () => {
return ( <View>
<Text>I am a dog!</Text></View>);
const Park = () => {
return ( <View>);
<Text>Welcome to the park!</Text>
<Dog /></View>
}
export default Park;
A. Welcome to the park! I am a dog!
B. I am a dog! Welcome to the park!
C. Welcome to the park!
D. I am a cat! Welcome!
FUOVER