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 CustomToast2 from "./components/CustomToast2";
import ContactUsInfoCard from "./components/ContactUsInfoCard"; import ContactUsInfoCard from "./components/ContactUsInfoCard";
import RoomCardInfo from "./components/RoomCardInfo"; import RoomCardInfo from "./components/RoomCardInfo";
import FormInput from "./components/FormInput";
function App() { function App() {
return ( return (
<Provider store={store}> <Provider store={store}>
<div className="App"> <div className="App">
<ProductDesign /> {/* <ProductDesign /> */}
{/* <VodProductDesign /> */} {/* <VodProductDesign /> */}
{/* <VodProduct /> */} {/* <VodProduct /> */}
{/* <VodProductNew /> */} {/* <VodProductNew /> */}
@ -151,6 +152,7 @@ function App() {
{/* <CardDesign3 /> */} {/* <CardDesign3 /> */}
<ContactUsInfoCard /> <ContactUsInfoCard />
<RoomCardInfo /> <RoomCardInfo />
<FormInput />
{/* <LeafletMap /> */} {/* <LeafletMap /> */}
{/* *************************************************** mini components *************************************************** */} {/* *************************************************** 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