classify web
This commit is contained in:
8
app/my-listing/[slug]/page.jsx
Normal file
8
app/my-listing/[slug]/page.jsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import ProductDetail from "@/components/PagesComponent/ProductDetail/ProductDetails";
|
||||
|
||||
const MyListingPage = async ({ params }) => {
|
||||
const { slug } = await params;
|
||||
return <ProductDetail slug={slug} />;
|
||||
};
|
||||
|
||||
export default MyListingPage;
|
||||
Reference in New Issue
Block a user