Web-Development-with-Blazor.../Chapter13/MyBlog/Components/Pages/AlertTest.razor

12 lines
284 B
Plaintext
Raw Normal View History

2023-02-17 15:28:17 +01:00
@page "/alerttest"
@using Components.RazorComponents
<Alert Style="Alert.AlertStyle.Danger">
This is a test
</Alert>
<Alert Style="Alert.AlertStyle.Success">
<ChildContent>
This is another test
</ChildContent>
</Alert>
<Alert Style="Alert.AlertStyle.Success"/>