Skip to content

Commit

Permalink
Merge pull request #44 from whysosaket/main
Browse files Browse the repository at this point in the history
Push
  • Loading branch information
whysosaket authored Sep 26, 2024
2 parents cbd3817 + 01ca9d5 commit e88c01b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions my-app/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Events from "./pages/Events";
import Base from "./layouts/Base";
import Subscribe from "./components/Subscribe";
import { useState } from "react";
// import NewsletterPage from "./pages/NewsletterPage";
import NewsletterPage from "./pages/NewsletterPage";

export default function App() {
const [isVisible, setIsVisible] = useState(false);
Expand All @@ -28,7 +28,7 @@ export default function App() {
<Route path="/community" element={<Community />} />
<Route path="/events" element={<Events />} />
<Route path="/contact-us" element={<ContactForm />} />
{/* <Route path="/newsletter" element={<NewsletterPage />} /> */}
<Route path="/newsletter" element={<NewsletterPage />} />
<Route path="*" element={<NotFound />} />
</Routes>
</Base>
Expand Down

0 comments on commit e88c01b

Please sign in to comment.