DataTable does not support using groupBy
and onMore
together.
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={() => {}} />