UNPKG

213 BTypeScriptView Raw
1export interface FeedbackModalProps {
2 isOpen: boolean;
3 toggle: Function;
4 zIndex?: number | string;
5}
6
7declare const FeedbackModal: React.FunctionComponent<FeedbackModalProps>;
8
9export default FeedbackModal;