Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 519 Bytes

datatable-groupby-onmore.md

File metadata and controls

20 lines (13 loc) · 519 Bytes

Rule to ensure groupBy and onMore are not used together on DataTable (datatable-groupby-onmore)

DataTable does not support using groupBy and onMore together.

Rule Details

This rule aims to ensure groupBy and onMore are not used together.

Examples of incorrect code for this rule:

<DateTable groupBy="location" onMore={() => {}} />

Examples of correct code for this rule:

<DateTable groupBy="location" />
<DateTable onMore={() => {}} />