10 lines
330 B
Plaintext
10 lines
330 B
Plaintext
@using Microsoft.AspNetCore.Blazor
|
|
@using Microsoft.AspNetCore.Blazor.Components
|
|
@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.
|
|
|
|
[Parameter] RenderFragment ChildContent { get; set; }
|
|
}
|