Do I know any Blazor experts here?
If I click the "MyComponent" button below, I get an error: "The render handle is not yet assigned." However, if I first click the "Click me" button, and THEN the "MyComponent" button, it will work as expected.
HOWEVER, if I change the method group invocation in the @onClick handler to a lambda, i.e, "() => _myComponentRef.ShowComponent()" everything will always work.
Does anyone know why this happens?

