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.

8 lines (7 loc) 226 B
interface LikeButtonProps { liked: boolean; count: number; onClick: () => void; } export default function LikeButton({ liked, count, onClick }: LikeButtonProps): import("react/jsx-runtime").JSX.Element; export {};