diff --git a/src/app/add-listing/[[...stepIndex]]/PageAddListing3.tsx b/src/app/add-listing/[[...stepIndex]]/PageAddListing3.tsx new file mode 100644 index 0000000..47c116e --- /dev/null +++ b/src/app/add-listing/[[...stepIndex]]/PageAddListing3.tsx @@ -0,0 +1,35 @@ +import NcInputNumber from "@/components/NcInputNumber"; +import React, { FC } from "react"; +import Select from "@/shared/Select"; +import FormItem from "../FormItem"; + +export interface PageAddListing3Props {} + +const PageAddListing3: FC = () => { + return ( + <> +

Size of your location

+
+ {/* FORM */} +
+ {/* ITEM */} + + + + + + + + +
+ + ); +}; + +export default PageAddListing3;