@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
12 lines (11 loc) • 356 B
TypeScript
import React from 'react';
import { IdType } from '../../../types';
import AttachmentModel from '../../../models/AttachmentModel';
import 'photoswipe/style.css';
type Props = {
id: IdType;
items: AttachmentModel[];
onDeleteItem?: (id: IdType) => void;
};
declare const MessageGallery: React.FC<Props>;
export default MessageGallery;