Skip to content

Commit 6e08a98

Browse files
committed
m
1 parent f2c59d6 commit 6e08a98

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

server/frontend/src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import Home from './components/Home/Home'; // Assuming your Home component is in
1414
import Dealer from './components/Dealers/Dealer'; // Assuming your Dealer component is in src/components/Dealer/Dealer.js
1515
// Assuming PostReview is in src/components/PostReview/PostReview.js
1616
import Header from './components/Header/Header';
17+
import PostReview from "./components/Dealers/PostReview"
1718

1819
function App() {
1920
return (
@@ -29,6 +30,7 @@ function App() {
2930
<Route path="/register" element={<Register />} />
3031
<Route path="/dealers" element={<Dealers />} />
3132
<Route path="/dealer/:id" element={<Dealer />} />
33+
<Route path="/postreview/:id" element={<PostReview/>} />
3234

3335
</Routes>
3436
);

0 commit comments

Comments
 (0)