I have a simple <table className="table table-condensed">...</table>
Everything works great except generated html is <table classname="table table-condensed"> . Instead of class="table table-condensed" it remains lower case classname.
I don't see a correct way of using it in documentation
Edit: I just did a string replace to get through it but I was still wonder if I'm missing anything
I have a simple
<table className="table table-condensed">...</table>Everything works great except generated html is
<table classname="table table-condensed">. Instead ofclass="table table-condensed"it remains lower caseclassname.I don't see a correct way of using it in documentation
Edit: I just did a string replace to get through it but I was still wonder if I'm missing anything