The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/Message/Attachments/Attachment/index.tsx

36 lines
760 B

import Image from '../components/Image';
import Attachment from './Attachment';
import Author from './Author';
import AuthorAvatar from './AuthorAvatar';
import AuthorName from './AuthorName';
import Block from './Block';
import Collapse from './Collapse';
import Content from './Content';
import Details from './Details';
import Download from './Download';
import Inner from './Inner';
import Row from './Row';
import Size from './Size';
import Text from './Text';
import Thumb from './Thumb';
import Title from './Title';
import TitleLink from './TitleLink';
export default Object.assign(Attachment, {
Image,
Row,
Title,
Text,
TitleLink,
Size,
Thumb,
Collapse,
Download,
Content,
Details,
Inner,
Block,
Author,
AuthorAvatar,
AuthorName,
});