From 5d8843a3e2521772c3b7bd8c3518baf54fa4e691 Mon Sep 17 00:00:00 2001 From: mahdi Date: Tue, 26 Apr 2022 13:02:52 +0430 Subject: [PATCH] update App.js --- src/App.js | 4 +++- src/components/FormInput/index.js | 11 +++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/components/FormInput/index.js 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;