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.

9 lines (8 loc) 282 B
interface PostContentProps { content: string; tags: string[]; showTranslation?: boolean; maxLength?: number; } export default function PostContent({ content, tags, showTranslation, maxLength, }: PostContentProps): import("react/jsx-runtime").JSX.Element; export {};