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.
11 lines (10 loc) • 404 B
TypeScript
import { Author, DropdownOption } from "../../types";
import { ReactNode } from "react";
interface PostHeaderProps {
author: Author;
options?: DropdownOption[];
extraComponent?: ReactNode;
titleExtraComponent?: ReactNode;
}
export default function PostHeader({ author, options, extraComponent, titleExtraComponent, }: PostHeaderProps): import("react/jsx-runtime").JSX.Element;
export {};