UNPKG

@yemredurur/feedback-app

Version:

This project is a feedback system for websites. It enables customers to provide feedback and saves it to Firebase.

13 lines (12 loc) 280 B
/** Dependencies */ import { FC } from 'react'; /** Styles */ interface TextAreaProps { value?: string; onChange?: (event: any) => void; id: string; maxLength?: number; className?: string; } declare const TextArea: FC<TextAreaProps>; export default TextArea;