update App.js

master
mahdi 2 years ago
parent 0dffb17714
commit 5d8843a3e2
  1. 4
      src/App.js
  2. 11
      src/components/FormInput/index.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 (
<Provider store={store}>
<div className="App">
<ProductDesign />
{/* <ProductDesign /> */}
{/* <VodProductDesign /> */}
{/* <VodProduct /> */}
{/* <VodProductNew /> */}
@ -151,6 +152,7 @@ function App() {
{/* <CardDesign3 /> */}
<ContactUsInfoCard />
<RoomCardInfo />
<FormInput />
{/* <LeafletMap /> */}
{/* *************************************************** mini components *************************************************** */}

@ -0,0 +1,11 @@
import React from "react";
const FormInput = () => {
return (
<div className="max-w-[850px] mx-auto mt-20 bg-white rounded-sm shadow-sm">
sdfdsf
</div>
);
};
export default FormInput;
Loading…
Cancel
Save