-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
28 lines (25 loc) · 672 Bytes
/
App.js
File metadata and controls
28 lines (25 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import * as React from 'react';
import { View, StyleSheet } from 'react-native';
import LittleLemonHeader from './components/LittleLemonHeader';
import LittleLemonFooter from './components/LittleLemonFooter';
import MenuItems from './components/MenuItems';
export default function App() {
return (
<>
<View style={styles.container}>
<LittleLemonHeader />
<MenuItems />
</View>
<View style={styles.footerContainer}>
<LittleLemonFooter />
</View>
</>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#333333',
},
footerContainer: { backgroundColor: '#333333' },
});