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 = ({ post }) => { //const dateFormated = format(new Date(date), "dd LL yyyy") return ( Comunicado Administrador de Comunidad {post} ) } CommentCard.propTypes = { // date: PropTypes.string.isRequired, post: PropTypes.string.isRequired, }