$table
El
$table(
Creates a <table> element wrapper for JSX-style composition.
Implementation
El $table({
String? className,
String? id,
Map<String, dynamic>? style,
Map<String, dynamic>? props,
}) => El(
_createJsxElement(
'table',
_buildJsxProps(className: className, id: id, style: style, props: props),
),
);