import { View, Image } from '@tarojs/components'; import './index.css'; interface UploadCardProps { imageUrl: string; title: string; onUpload: () => void; className?: string; } export default function UploadCard({ imageUrl, title, onUpload, className = '' }: UploadCardProps) { return ( {imageUrl ? ( ) : ( {title} )} ); }