-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CM-457: initial deduplication task preview (#6)
* CM-457: added searcher for BenefitPlanDeduplication Task * CM-457: initial deduplication task body --------- Co-authored-by: sniedzielski <[email protected]> Co-authored-by: Jan <[email protected]>
- Loading branch information
1 parent
6ed5754
commit 87798b9
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import React from 'react'; | ||
|
||
function BeneficiaryDeduplicationTaskDisplay({ | ||
businessData, | ||
}) { | ||
return ( | ||
<div> | ||
<div> | ||
{JSON.stringify(businessData.column_values)} | ||
{' '} | ||
, | ||
count: | ||
{' '} | ||
{businessData.count} | ||
</div> | ||
<div> | ||
headers | ||
</div> | ||
<div> | ||
{businessData.ids.map((id) => <div>{id}</div>)} | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
const DeduplicationResolutionTaskTableHeaders = () => []; | ||
|
||
const DeduplicationResolutionItemFormatters = () => [ | ||
(businessData) => <BeneficiaryDeduplicationTaskDisplay businessData={businessData} />, | ||
]; | ||
|
||
export { DeduplicationResolutionTaskTableHeaders, DeduplicationResolutionItemFormatters }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters