Closed
Description
This issue is being opened by request of @SteveSandersonMS Please see the full issue details https://github.com/aspnet/Blazor/issues/735 in the Blazor Repo.
The summary is that will be nice to be able to pass arbitrary attributes from a custom component down to an HTML element. For example:
<MyComponent id="myid" />
in the component render it as:
<button id="myid" />
without having to code every single attribute possible. Not mention allowing attributes such data-* to be passed down.