🔰 Introduction If you're building a general-purpose Razor component in Blazor, you've probably wanted to expose the DOM events happening inside it as the component's own event callbacks. The OnClick event is a classic example. So, as a first try, we might implement a MyButton component like this: button @onclick="InternalOnClick"> Click me button> @code { [Parameter] public EventCallbackMous