import React, { FunctionComponent } from "react"; import { Renderer } from "../../types"; import { getAttachmentMimeType } from "../../utils"; /** * Component rendering unsupported attachments */ export const UnsupportedRenderer: FunctionComponent = ({ attachment }) => (

Rendering of this type of attachment is not supported.

Please check your mime-type: {getAttachmentMimeType(attachment)}

);