more
This commit is contained in:
10
src/App.js
10
src/App.js
@@ -14,6 +14,7 @@ import Dashboard from "./Components/Dashboard/Dashboard";
|
||||
import Container from "react-bootstrap/Container";
|
||||
import CaseListPage from "./Components/Case/CaseListPage";
|
||||
import CaseDetailsPage from "./Components/Case/CaseDetailsPage";
|
||||
import CaseTypePage from "./Components/Case/CaseTypePage";
|
||||
import Footer from "./Components/Footer/Footer";
|
||||
import Navbar from "./Components/Navigation/Navbar";
|
||||
import AccountPage from "./Components/Account/AccountPage";
|
||||
@@ -75,6 +76,15 @@ function App() {
|
||||
</PrivateRoute>
|
||||
}
|
||||
/>
|
||||
<Route
|
||||
exact
|
||||
path="/casetype/:caseId"
|
||||
element={
|
||||
<PrivateRoute>
|
||||
<CaseTypePage />
|
||||
</PrivateRoute>
|
||||
}
|
||||
/>
|
||||
<Route
|
||||
exact
|
||||
path="/casedetails/:caseId"
|
||||
|
||||
Reference in New Issue
Block a user