import React from 'react' import { View, Text, Pressable, StyleSheet, Image } from 'react-native'; export const AccesoNoAutorizado = () => { return ( Acceso no autorizado No tiene permisos para acceder a esta pantalla ------------- o -------------- Regresar a la Pantalla principal ) } const style = StyleSheet.create({ container: { width: '100%', height: '100%', justifyContent: 'center', alignItems: 'center', backgroundColor: 'white', }, titulo: { fontSize: 20, }, images: { width: 180, height: 255, }, btn: { width: 250, height: 50, backgroundColor: 'yellow', justifyContent: 'center', alignItems: 'center', padding: 10, }, negrita: { fontWeight: 'bold', margin: 12, } });