import * as React from 'react' import { useTranslation } from 'react-i18next' type MediaFilePreviewProps = { type: 'image' | 'video' src: string } const MediaFilePreview = ({ type, src }: MediaFilePreviewProps) => { const { t } = useTranslation('workflow') if (!src) { return (