Closed justinwilaby closed 8 years ago
Given the template:
<button dataMyData={myDataValue} ariaSelected="true"><{buttonText}</button>
The resulting html is:
<button datamydata="someValue" ariaselected="true"><Toggle</button>
Which is invalid.
The expected result should be:
<button data-my-data="someValue" aria-selected="true"><Toggle</button>
Given the template:
The resulting html is:
Which is invalid.
The expected result should be: