Is there any advantage of using single quotation marks over double quotation marks in TSX HTML tags?
Single quotation marks:
<Table aria-label='simple table'>
...
</Table>
Double quotation marks:
<Table aria-label="simple table">
...
</Table>
according to w3:
By default, SGML requires that all attribute values be delimited using either double quotation marks (ASCII decimal 34) or single quotation marks (ASCII decimal 39). Single quote marks can be included within the attribute value when the value is delimited by double quote marks, and vice versa. Authors may also use numeric character references to represent double quotes (") and single quotes ('). For double quotes authors can also use the character entity reference ".
so it does not matter, choose whatever style you like