BOD-17 Added Contracts list page + updates and bugfixes on other pages.

This commit is contained in:
Patrick Fic
2020-04-01 10:48:53 -07:00
parent 28f443277b
commit 2a1cb3fb9f
15 changed files with 253 additions and 16 deletions

View File

@@ -61,7 +61,9 @@ const ContractCreatePage = lazy(() =>
const ContractDetailPage = lazy(() =>
import("../contract-detail/contract-detail.page.container")
);
const ContractsList = lazy(() =>
import("../contracts/contracts.page.container")
);
const { Header, Content, Footer } = Layout;
export default function Manage({ match }) {
@@ -117,7 +119,7 @@ export default function Manage({ match }) {
<Route
exact
path={`${match.path}/courtesycars/contracts`}
component={() => <div>HOLD</div>}
component={ContractsList}
/>
<Route