Added page for job closing BOD-131

This commit is contained in:
Patrick Fic
2020-05-15 16:43:27 -07:00
parent 58b4985319
commit 51ea04bf2c
15 changed files with 833 additions and 444 deletions

View File

@@ -87,6 +87,7 @@ const JobIntake = lazy(() =>
import("../jobs-intake/jobs-intake.page.container")
);
const AllJobs = lazy(() => import("../jobs-all/jobs-all.container"));
const JobsClose = lazy(() => import("../jobs-close/jobs-close.container"));
const { Header, Content, Footer } = Layout;
@@ -125,7 +126,12 @@ export default function Manage({ match }) {
exact
path={`${match.path}/jobs/:jobId/intake`}
component={JobIntake}
/>{" "}
/>
<Route
exact
path={`${match.path}/jobs/:jobId/close`}
component={JobsClose}
/>
<Route
exact
path={`${match.path}/jobs/all`}