import { format } from "date-fns"; import { Badge, Box, HStack, Pressable, Spacer, Text } from "native-base"; import PropTypes from 'prop-types'; import React from 'react'; export const CommentCard = ({ date, comment }) => { const dateFormated = format(new Date(date), "dd LL yyyy") return ( Comunicado {dateFormated} Administrador de Comunidad {comment} ) } CommentCard.propTypes = { date: PropTypes.string.isRequired, comment: PropTypes.string.isRequired, }