UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

9 lines (8 loc) 276 B
import { ReactElement } from 'react'; import './index.scss'; export interface MobileFeedbackMenuProps { hideMenu(): void; onEditFeedback(): void; onRemoveFeedback(): void; } export default function MobileFeedbackMenu(props: MobileFeedbackMenuProps): ReactElement;