gym website
.
import React, { useState } from “react”;
import Navbar from “./components/Navbar”;
import HeroSection from “./components/HeroSection”;
import AboutSection from “./components/AboutSection”;
import ServicesSection from “./components/ServicesSection”;
import PricingSection from “./components/PricingSection”;
import TestimonialSection from “./components/TestimonialSection”;
import ContactSection from “./components/ContactSection”;
import Footer from “./components/Footer”;
function App() {
const [userInput, setUserInput] = useState(“”);
const handleInputChange = (event) => {
setUserInput(event.target.value);
}
return (
);
}
export default App;
