diff --git a/src/App.js b/src/App.js index b5f65f5..ce1f43e 100644 --- a/src/App.js +++ b/src/App.js @@ -96,12 +96,13 @@ import CardDesign3 from "./components/CardDesign3"; import CustomToast2 from "./components/CustomToast2"; import ContactUsInfoCard from "./components/ContactUsInfoCard"; import RoomCardInfo from "./components/RoomCardInfo"; +import FormInput from "./components/FormInput"; function App() { return (
- + {/* */} {/* */} {/* */} {/* */} @@ -151,6 +152,7 @@ function App() { {/* */} + {/* */} {/* *************************************************** mini components *************************************************** */} diff --git a/src/components/FormInput/index.js b/src/components/FormInput/index.js new file mode 100644 index 0000000..249ac5e --- /dev/null +++ b/src/components/FormInput/index.js @@ -0,0 +1,11 @@ +import React from "react"; + +const FormInput = () => { + return ( +
+ sdfdsf +
+ ); +}; + +export default FormInput;