外观
禁止使用未知的 DOM 属性。
可以使用无效且未知的属性名称。
// Unknown properties const Hello = <div class="hello">Hello World</div>; const Alphabet = <div abc="something">Alphabet</div>; // Invalid aria-* attribute const IconButton = <div aria-foo="bar" />;