(Choose 1 answer)
Which one of the following code snippets contains the correct code for representing the Little Lemon footer component?
A. export default function LittleLemonFooter() {
return (
<View
style={{
backgroundColor: '#F4CE14',marginBottom: 10,
}}><Text
style={{
fontSize: 18,
color: 'black',
textAlign: 'center',
}}>All rights reserved by Little Lemon, 2022{' '}
</Text>
</View>
);
B. export default function LittleLemonFooter() {
return ( <View
style={backgroundColor: '#F4CE14',marginBottom: 10,}>
<Textstyle={
Exit 30