react-game-kit
react-game-kit copied to clipboard
Components should forward classNames
Use case:
.someClass{
position:absolute;
// whatever
}
<Loop className="someClass" style>
Expected:
<div class="someClass"></div>
Actual:
<div style="width:100%;height:100%"></div>
Currently, only style is supported.
IMO they should forward everything using {...rest}