import GracefullyImage from '@components/GracefullyImage' import { StyleConstants } from '@utils/styles/constants' import React from 'react' import { View } from 'react-native' import AttachmentAltText from './AltText' import attachmentAspectRatio from './aspectRatio' export interface Props { total: number index: number sensitiveShown: boolean image: Mastodon.AttachmentImage navigateToImagesViewer: (imageIndex: string) => void } const AttachmentImage = ({ total, index, sensitiveShown, image, navigateToImagesViewer }: Props) => { return ( ) } export default AttachmentImage