aspnetcore/test/testapps/BasicTestApp/PassThroughContentComponent...

9 lines
279 B
Plaintext

@using Microsoft.AspNetCore.Blazor
@ChildContent
@functions {
// Note: The lack of any whitespace or other output besides @ChildContent is important for
// what scenarios this component is used for in E2E tests.
public RenderFragment ChildContent { get; set; }
}