@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) • 493 B
TypeScript
import { FC } from "react";
/** Styles */
export interface FeedBackModalProps {
title?: string;
rootId: string;
companyId: number;
companyName: string;
onClose: (toogle: boolean) => void;
submitText?: string;
successMessage?: string;
errorMessage?: string;
onSendEvent?: () => void;
maxTextLength?: number;
minTextLength?: number;
showCountLeftText?: boolean;
}
declare const FeedBackModal: FC<FeedBackModalProps>;
export default FeedBackModal;