UNPKG

chat-frontend-library

Version:

``` npm install chat-frontend-library --save ```

9 lines (8 loc) 297 B
import "./ChatMessage.scss"; interface IModalMessageProps { isOpen: boolean; file_path: string; cbHandleClose: () => void; } declare const ModalMessage: ({ isOpen, file_path, cbHandleClose }: IModalMessageProps) => import("react/jsx-runtime").JSX.Element; export default ModalMessage;