1234567891011121314151617 |
- import * as React from 'react';
- import { StyleSheet, View, Text } from 'react-native';
- import Header from '../shared/header';
-
- export default function Gallery() {
- return (
- <View style={styles.container}>
- <Text>Gallery Screen</Text>
- </View>
- )
- }
-
- const styles = StyleSheet.create({
- container: {
- padding: 24
- }
- });
|