BugWASMTitle/BlazorApp/Shared/SurveyPrompt.razor

17 lines
494 B
Plaintext
Raw Permalink Normal View History

2021-08-31 14:23:23 +00:00
<div class="alert alert-secondary mt-4">
<span class="oi oi-pencil mr-2" aria-hidden="true"></span>
<strong>@Title</strong>
<span class="text-nowrap">
Please take our
<a target="_blank" class="font-weight-bold" href="https://go.microsoft.com/fwlink/?linkid=2148851">brief survey</a>
</span>
and tell us what you think.
</div>
@code {
// Demonstrates how a parent component can supply parameters
[Parameter]
public string? Title { get; set; }
}