(Choose 1 answer)
class Footer extends Component { render() { return ( <View><Text> This is footer!</Text></View>);
}
class MainScreen extends Component { render() { return ( <View><Header /><Footer /></View>);
} export default MainScreen;
A. This is header! This is footer!
B. This is footer! This is header!
C. This is header!
D. This is footer!
38