Skip to content

Commit e88c01b

Browse files
authored
Merge pull request #44 from whysosaket/main
Push
2 parents cbd3817 + 01ca9d5 commit e88c01b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: my-app/src/App.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Events from "./pages/Events";
88
import Base from "./layouts/Base";
99
import Subscribe from "./components/Subscribe";
1010
import { useState } from "react";
11-
// import NewsletterPage from "./pages/NewsletterPage";
11+
import NewsletterPage from "./pages/NewsletterPage";
1212

1313
export default function App() {
1414
const [isVisible, setIsVisible] = useState(false);
@@ -28,7 +28,7 @@ export default function App() {
2828
<Route path="/community" element={<Community />} />
2929
<Route path="/events" element={<Events />} />
3030
<Route path="/contact-us" element={<ContactForm />} />
31-
{/* <Route path="/newsletter" element={<NewsletterPage />} /> */}
31+
<Route path="/newsletter" element={<NewsletterPage />} />
3232
<Route path="*" element={<NotFound />} />
3333
</Routes>
3434
</Base>

0 commit comments

Comments
 (0)