diff --git a/src/app/add-listing/[[...stepIndex]]/PageAddListing1.tsx b/src/app/add-listing/[[...stepIndex]]/PageAddListing1.tsx new file mode 100644 index 0000000..9daa2a7 --- /dev/null +++ b/src/app/add-listing/[[...stepIndex]]/PageAddListing1.tsx @@ -0,0 +1,51 @@ +import React, { FC } from "react"; +import Input from "@/shared/Input"; +import Select from "@/shared/Select"; +import FormItem from "../FormItem"; + +export interface PageAddListing1Props {} + +const PageAddListing1: FC = () => { + return ( + <> +

Choosing listing categories

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