Added all jobs page with pagination BOD-80

This commit is contained in:
Patrick Fic
2020-05-15 09:16:58 -07:00
parent 87146fa08d
commit ef96186dfb
12 changed files with 966 additions and 2 deletions

View File

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