mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
12 lines
284 B
Plaintext
12 lines
284 B
Plaintext
@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"/>
|