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

github.com/mono/illinker-test-assets.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'wasm/HelloWorld/Shared/SurveyPrompt.cshtml')
-rw-r--r--wasm/HelloWorld/Shared/SurveyPrompt.cshtml15
1 files changed, 15 insertions, 0 deletions
diff --git a/wasm/HelloWorld/Shared/SurveyPrompt.cshtml b/wasm/HelloWorld/Shared/SurveyPrompt.cshtml
new file mode 100644
index 0000000..5c08048
--- /dev/null
+++ b/wasm/HelloWorld/Shared/SurveyPrompt.cshtml
@@ -0,0 +1,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; }
+}