Further UI Updates.

This commit is contained in:
Patrick Fic
2021-03-30 17:13:33 -07:00
parent a0654bdb2c
commit a61be6a44f
48 changed files with 755 additions and 616 deletions

View File

@@ -8,13 +8,11 @@ export default function ContractsPageComponent({
total,
}) {
return (
<div>
<ContractsList
loading={loading}
contracts={data}
refetch={refetch}
total={total}
/>
</div>
<ContractsList
loading={loading}
contracts={data}
refetch={refetch}
total={total}
/>
);
}