import React, { useMemo } from "react"; import { Image } from "antd-mobile"; export default function OwnImage({ src, width = "100%", height = "100%", className, outClassName, roundedFull, rounded, ...others }) { const loadingImage = useMemo( () => (
), [] ); return (
); }