Added help page and rescue component BOD-326
This commit is contained in:
10
client/src/pages/help/help.page.jsx
Normal file
10
client/src/pages/help/help.page.jsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user