Skip to content

Commit 7f1a9f6

Browse files
feat: adição do arquivo CustomHeader.razor
1 parent e3363e6 commit 7f1a9f6

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
@if (ChildContent is null)
2+
{
3+
<div class="alert alert-info" role="alert">
4+
Cabeçalho não definido!
5+
</div>
6+
}
7+
else
8+
{
9+
<div class="alert alert-info" role="alert">
10+
@ChildContent
11+
</div>
12+
}
13+
14+
@code {
15+
16+
[Parameter]
17+
public RenderFragment? ChildContent { get; set; }
18+
19+
}

0 commit comments

Comments
 (0)