import { format } from "date-fns"; import { Box, ScrollView, Text, Stack, Heading, Badge } from "native-base"; import PropTypes from 'prop-types'; import React from 'react'; export const ReservasCard = ({ date, startTime, endTime, status, name}) => { const dateFormated = format(new Date(date), "dd LL yyyy") try { } catch (error) { } return ( {name} {dateFormated} Hora de inicio: {startTime} ) } ReservasCard.propTypes = { date: PropTypes.string.isRequired, startTime: PropTypes.string.isRequired, status: PropTypes.string.isRequired }