Added routing and basic board component.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import React from "react";
|
||||
import JobsDetail from "./jobs-detail.page";
|
||||
|
||||
export default function JobsDetailPageContainer({ match }) {
|
||||
const jobId = match.params.jobId;
|
||||
return <JobsDetail jobId={jobId} />;
|
||||
}
|
||||
5
client/src/pages/jobs-detail/jobs-detail.page.jsx
Normal file
5
client/src/pages/jobs-detail/jobs-detail.page.jsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
export default function JobsDetail({ jobId }) {
|
||||
return <div>Jobs Detail Page - Job ID {jobId}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user