1234567891011121314151617181920212223242526272829303132333435 |
- //Nathalia A. ALicea Maldonado
- //Pantalla de Sobre Nosotros. No se está utilizando.
-
- import React from 'react';
- import {View, Text, StyleSheet, Button} from 'react-native';
-
- export default function About({navigation}){
- return(
- <View style = {styles.container}>
- <View style = {styles.content}>
- <Text style = {styles.text}>
- About is here!
- </Text>
- </View>
- </View>
- )
- }
-
- const styles = StyleSheet.create({
- container:{
- flex:1
- },
- content:{
- flex:1,
- alignItems: 'center',
- justifyContent: 'center',
- backgroundColor: '#c303ac'
- },
- text:{
- fontSize: 20,
- color: '#ffffff',
- fontWeight: "800"
- }
-
- })
|