import { useNavigate } from "react-router-dom"; import { useTranslation } from "react-i18next"; import ProductSwiper from "./ProductSwiper"; const Products = () => { const {t} = useTranslation(); const navigate = useNavigate(); const handelSeeAll = () => { navigate(`/categories?type=best_sale`); }; return (

{t("Best Sale")}

{t("View all")}
); }; export default Products;