import { Trans, useTranslation } from "react-i18next"
import { Link } from "react-router-dom"
export const ReturnShippingPlaceholder = () => {
const { t } = useTranslation()
return (
{t("orders.returns.placeholders.noReturnShippingOptions.title")}
),
}}
/>
)
}
export const OutboundShippingPlaceholder = () => {
const { t } = useTranslation()
return (
{t("orders.returns.placeholders.outboundShippingOptions.title")}
),
}}
/>
)
}