Added scoreboard initial design BOD-91

This commit is contained in:
Patrick Fic
2020-06-26 16:25:54 -07:00
parent 4516491c8c
commit 3df456e2dd
41 changed files with 1388 additions and 11 deletions

View File

@@ -113,6 +113,10 @@ const PaymentsAll = lazy(() =>
import("../payments-all/payments-all.container.page")
);
const Scoreboard = lazy(() =>
import("../scoreboard/scoreboard.page.container.jsx")
);
const { Content } = Layout;
const stripePromise = new Promise((resolve, reject) => {
@@ -305,6 +309,11 @@ export function Manage({ match, conflict }) {
path={`${match.path}/payments`}
component={PaymentsAll}
/>
<Route
exact
path={`${match.path}/scoreboard`}
component={Scoreboard}
/>
</Suspense>
)}
</ErrorBoundary>