BOD-21 Initial creation of the production schedule list framework.

This commit is contained in:
Patrick Fic
2020-04-21 16:02:12 -07:00
parent 5303ab0114
commit f2fd1bf7eb
30 changed files with 2657 additions and 514 deletions

View File

@@ -77,6 +77,9 @@ const EnterInvoiceModalContainer = lazy(() =>
const TimeTicketModalContainer = lazy(() =>
import("../../components/time-ticket-modal/time-ticket-modal.container")
);
const ProductionListPage = lazy(() =>
import("../production-list/production-list.container")
);
const { Header, Content, Footer } = Layout;
export default function Manage({ match }) {
@@ -165,6 +168,11 @@ export default function Manage({ match }) {
path={`${match.path}/vehicles`}
component={VehiclesContainer}
/>
<Route
exact
path={`${match.path}/production/list`}
component={ProductionListPage}
/>
<Route
exact
path={`${match.path}/vehicles/:vehId`}