This commit is contained in:
QkoSad
2022-12-04 16:36:39 +02:00
parent 7841afe8de
commit 85f56e2f80
9 changed files with 551 additions and 9 deletions
+2
View File
@@ -13,6 +13,7 @@ import Category from "./pages/Category";
import CreateLising from "./pages/CreateListing";
import Listing from "./pages/Listing";
import Contact from "./pages/Contact";
import EditListing from "./pages/EditListing";
function App() {
return (
@@ -30,6 +31,7 @@ function App() {
<Route path="/sign-up" element={<Signup />} />
<Route path="/forgot-password" element={<ForgotPassword />} />
<Route path="/create-listing" element={<CreateLising />} />
<Route path="/edit-listing/:listingId" element={<EditListing />} />
<Route
path="/category/:categoryName/:listingId"
element={<Listing />}