BOD-71 Added dependencies and pages for kanban production board.

This commit is contained in:
Patrick Fic
2020-04-22 15:53:22 -07:00
parent e17c41a3dc
commit 7544549e10
11 changed files with 289 additions and 8 deletions

View File

@@ -80,6 +80,9 @@ const TimeTicketModalContainer = lazy(() =>
const ProductionListPage = lazy(() =>
import("../production-list/production-list.container")
);
const ProductionBoardPage = lazy(() =>
import("../production-board/production-board.container")
);
const { Header, Content, Footer } = Layout;
export default function Manage({ match }) {
@@ -173,6 +176,11 @@ export default function Manage({ match }) {
path={`${match.path}/production/list`}
component={ProductionListPage}
/>
<Route
exact
path={`${match.path}/production/board`}
component={ProductionBoardPage}
/>
<Route
exact
path={`${match.path}/vehicles/:vehId`}