@yemredurur/feedback-app
Version:
This project is a feedback system for websites. It enables customers to provide feedback and saves it to Firebase.
19 lines (18 loc) • 474 B
TypeScript
import { FC } from "react";
interface FeedBackProps {
title?: string;
rootId: string;
companyId: number;
companyName: string;
maxTextLength?: number;
minTextLength?: number;
showCountLeftText?: boolean;
submitText?: string;
successMessage?: string;
errorMessage?: string;
onClickEvent?: () => void;
onSendEvent?: () => void;
onCloseEvent?: () => void;
}
declare const FeedBack: FC<FeedBackProps>;
export default FeedBack;