The `_data :: Object String` fields of the Props records are for [HTML data attributes](https://developer.mozilla.org/en-US/docs/Learn/HTML/Howto/Use_data_attributes). The `data-` prefix will be added to the attribute, so for example ```purescript div' { _data: singleton "name" "value" } ``` will render as ```html <div data-name="value" /> ```
The
_data :: Object Stringfields of the Props records are for HTML data attributes. Thedata-prefix will be added to the attribute, so for examplediv' { _data: singleton "name" "value" }will render as