UNPKG

@sendbird/uikit-react

Version:

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

10 lines (9 loc) 297 B
import React from 'react'; import { SendableMessageType } from '../../../utils'; export interface RemoveMessageProps { onCancel: () => void; onSubmit?: () => void; message: SendableMessageType; } declare const RemoveMessage: React.FC<RemoveMessageProps>; export default RemoveMessage;