import { IonBadge, IonButton, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonIcon, IonNote, IonRow, } from '@ionic/react'; import { bookmarkOutline, shareOutline } from 'ionicons/icons'; import './Post.css'; export const Post = ({ post }) => { return ( main post post author {post.author} {post.date} {post.title}

{post.content}

{post.category}
); };