tableBody function
Semantic <tbody> table body element.
Implementation
BloomNode tableBody({
required List<BloomNode> children,
String extraClassName = '',
}) {
return El(
'tbody',
className: cn(['[&_tr:last-child]:border-0', extraClassName]),
children: children,
);
}