Added help page and rescue component BOD-326

This commit is contained in:
Patrick Fic
2020-08-28 13:26:21 -07:00
parent 364cf6c7bb
commit ab4262c238
7 changed files with 194 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import React from "react";
import HelpRescue from "../../components/help-rescue/help-rescue.component";
export default function HelpPage() {
return (
<div>
<HelpRescue />
</div>
);
}

View File

@@ -126,6 +126,7 @@ const Scoreboard = lazy(() =>
const TimeTicketsAll = lazy(() =>
import("../time-tickets/time-tickets.container")
);
const Help = lazy(() => import("../help/help.page"));
const { Content, Header } = Layout;
@@ -345,6 +346,7 @@ export function Manage({ match, conflict }) {
path={`${match.path}/timetickets`}
component={TimeTicketsAll}
/>
<Route exact path={`${match.path}/help`} component={Help} />
</Suspense>
)}
</ErrorBoundary>