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

@@ -0,0 +1,10 @@
import React from "react";
import ContractFormComponent from "../../components/contract-form/contract-form.component";
export default function ContractCreatePageComponent() {
return (
<div>
<ContractFormComponent />
</div>
);
}