11 lines
374 B
TypeScript
11 lines
374 B
TypeScript
|
|
import WhatsappAttachmentIcon from "@material-ui/icons/AttachFile";
|
||
|
|
import WhatsappAttachmentList from "./WhatsappAttachmentList";
|
||
|
|
import WhatsappAttachmentShow from "./WhatsappAttachmentShow";
|
||
|
|
|
||
|
|
// eslint-disable-next-line import/no-anonymous-default-export
|
||
|
|
export default {
|
||
|
|
list: WhatsappAttachmentList,
|
||
|
|
show: WhatsappAttachmentShow,
|
||
|
|
icon: WhatsappAttachmentIcon,
|
||
|
|
};
|