import Breadcrumb from '@/sheardComponent/Breadcrumb';
import React from 'react';
import ShopSection from './ShopSection';

const ShopMain = ({categories}: any) => {
    return (
        <>
            <ShopSection categories={categories} />
        </>
    );
};

export default ShopMain;
