shopping-cart-blazor-wasm/Client/Shared/SurveyPrompt.razor

17 lines
507 B
Text
Raw Permalink Normal View History

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