import React from 'react' import { useTranslation } from 'react-i18next' const Empty = () => { const [t] = useTranslation() return (

{t("There are no suitable products")}

{t("Please try using other keywords to find the product name")}

) } export default Empty