UNPKG

react-newsfeed

Version:

A customizable social media post component for React applications that mimics popular social media feeds with features like likes, comments, and image galleries.

3 lines (2 loc) 362 B
import { PostProps } from "../../types"; export default function Post({ author, content, tags, images, extraComponent, options, initialLiked, initialLikeCount, initialComments, showTranslation, onLikePost, onAddComment, onLikeComment, onDeleteComment, onAddReply, onLikeReply, onDeleteReply, onClickShare, }: PostProps): import("react/jsx-runtime").JSX.Element;