(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 Cat = () => {
return (
<View>
<Text>I am also a cat!</Text>
</View>
);
}
}
const Cafe = () => {
return (
<View>
<Text>Welcome!</Text>
<Cat />
<Cat />
<Cat/>
</View>
);
export default Cafe;
A. Welcome!
am also a cat!
am also a cat!
am also a cat!
Exit (31