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) 290 B
interface ReplyInputProps { value: string; onChange: (value: string) => void; onSubmit: () => void; placeholder?: string; } export default function ReplyInput({ value, onChange, onSubmit, placeholder, }: ReplyInputProps): import("react/jsx-runtime").JSX.Element; export {};