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