react jsx:
<button ariaLabel='label'>click</button>
rendered html:
<button arialabel="label">click</button>
console warning:
index.js:1 Warning: Invalid ARIA attribute `ariaLabel`. Did you mean `aria-label`?
ummm no, I meant ariaLabel since we always camelCase in jsx. Why is it all lowercase in the rendered html?