I have run into a weird issue in React. Normally when you set className it gets converted to class, but when you also set the is attribute, this does not happen. You have to use class instead. Is there a reason behind this behavior?
<div key={this.props.key} className='A B' is='x-custom-web-component'></div>
isattribute?