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) 262 B
import { Author, DropdownOption } from "../../types"; interface PostHeaderProps { author: Author; options?: DropdownOption[]; } export default function PostHeader({ author, options }: PostHeaderProps): import("react/jsx-runtime").JSX.Element; export {};