From 092572c0cdb6478f0ef9509da41c40e2161250d2 Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 17:41:07 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Added=20form=20components=20to?= =?UTF-8?q?=20PageAddListing3.=20=F0=9F=9B=A0=EF=B8=8F=20Updated=20PageAdd?= =?UTF-8?q?Listing3=20layout=20and=20styles.=20=F0=9F=93=8A=20Implemented?= =?UTF-8?q?=20Acreage=20selection=20in=20PageAddListing3.=20=F0=9F=92=BC?= =?UTF-8?q?=20Added=20Guest,=20Bedroom,=20Beds,=20Bathroom,=20and=20Kitche?= =?UTF-8?q?n=20inputs=20to=20PageAddListing3.=20=F0=9F=8C=9F=20Improved=20?= =?UTF-8?q?user=20experience=20in=20PageAddListing3.=20=F0=9F=90=9B=20Fixe?= =?UTF-8?q?d=20minor=20bugs=20in=20PageAddListing3.=20=F0=9F=93=9D=20Updat?= =?UTF-8?q?ed=20documentation=20for=20PageAddListing3.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../[[...stepIndex]]/PageAddListing3.tsx | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/app/add-listing/[[...stepIndex]]/PageAddListing3.tsx 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;