Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SurveyPrompt.cshtml « Shared « Newtonsoft « wasm - github.com/mono/illinker-test-assets.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c080484c892dbb0cfd118f5ffa2ebcfebdc32ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="alert alert-secondary mt-4" role="alert">
    <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=2041371">brief survey</a>
    </span>
    and tell us what you think.
</div>

@functions {
    // Demonstrates how a parent component can supply parameters
    [Parameter] string Title { get; set; }
}