Added shift clock to front office side. BOD-188

This commit is contained in:
Patrick Fic
2020-07-16 10:33:03 -07:00
parent 6a8b59c7e6
commit bbc0359e3a
9 changed files with 110 additions and 76 deletions

View File

@@ -116,7 +116,7 @@ const ShopCsiPageContainer = lazy(() =>
const PaymentsAll = lazy(() =>
import("../payments-all/payments-all.container.page")
);
const ShiftClock = lazy(() => import("../shift-clock/shift-clock.page"));
const Scoreboard = lazy(() =>
import("../scoreboard/scoreboard.page.container.jsx")
);
@@ -319,6 +319,11 @@ export function Manage({ match, conflict }) {
path={`${match.path}/payments`}
component={PaymentsAll}
/>
<Route
exact
path={`${match.path}/shiftclock`}
component={ShiftClock}
/>
<Route
exact
path={`${match.path}/scoreboard`}

View File

@@ -0,0 +1,10 @@
import React from "react";
import TimeTicketShift from "../../components/time-ticket-shift/time-ticket-shift.container";
export default function ShiftClock() {
return (
<div>
<TimeTicketShift />
</div>
);
}