diff --git a/src/app/(client-components)/(HeroSearchForm)/(stay-search-form)/StaySearchForm.tsx b/src/app/(client-components)/(HeroSearchForm)/(stay-search-form)/StaySearchForm.tsx new file mode 100644 index 0000000..a3e7dff --- /dev/null +++ b/src/app/(client-components)/(HeroSearchForm)/(stay-search-form)/StaySearchForm.tsx @@ -0,0 +1,22 @@ +import React, { FC } from "react"; +import LocationInput from "../LocationInput"; +import GuestsInput from "../GuestsInput"; +import StayDatesRangeInput from "./StayDatesRangeInput"; + +const StaySearchForm: FC<{}> = ({}) => { + const renderForm = () => { + return ( +
+ +
+ +
+ + + ); + }; + + return renderForm(); +}; + +export default StaySearchForm;