Files
mastodon-sakyey/app/javascript/mastodon/features/account_edit/modals/image_alt.tsx

13 lines
416 B
TypeScript

import type { FC } from 'react';
import type { ImageLocation } from '@/mastodon/reducers/slices/profile_edit';
import { DialogModal } from '../../ui/components/dialog_modal';
import type { DialogModalProps } from '../../ui/components/dialog_modal';
export const ImageAltModal: FC<
DialogModalProps & { location: ImageLocation }
> = ({ onClose }) => {
return <DialogModal title='TODO' onClose={onClose} />;
};