BOD-17 Creation of new contract page

This commit is contained in:
Patrick Fic
2020-03-30 17:27:33 -07:00
parent fa3031e313
commit 9ae3843b3b
11 changed files with 899 additions and 3 deletions

View File

@@ -55,6 +55,9 @@ const CourtesyCarDetailContainer = lazy(() =>
const CourtesyCarsPage = lazy(() =>
import("../courtesy-cars/courtesy-cars.page.container")
);
const ContractCreatePage = lazy(() =>
import("../contract-create/contract-create.page.container")
);
const { Header, Content, Footer } = Layout;
@@ -117,7 +120,7 @@ export default function Manage({ match }) {
<Route
exact
path={`${match.path}/courtesycars/contracts/new`}
component={() => <div>new cc contract</div>}
component={ContractCreatePage}
/>
<Route
exact