Added shift clock to front office side. BOD-188
This commit is contained in:
@@ -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`}
|
||||
|
||||
10
client/src/pages/shift-clock/shift-clock.page.jsx
Normal file
10
client/src/pages/shift-clock/shift-clock.page.jsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user