summary refs log tree commit diff
path: root/GitRepoViewer/Shared/SurveyPrompt.razor
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-06-05 03:25:53 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-06-05 03:25:53 +0200
commit51d820e22a4517dbb06d38a4f07f7c48522ef811 (patch)
tree4a7749cf77223dff2414fd4b73cb17df43d7449e /GitRepoViewer/Shared/SurveyPrompt.razor
downloadGitTools-51d820e22a4517dbb06d38a4f07f7c48522ef811.tar.xz
Initial commit HEAD master
Diffstat (limited to 'GitRepoViewer/Shared/SurveyPrompt.razor')
-rw-r--r--GitRepoViewer/Shared/SurveyPrompt.razor17
1 files changed, 17 insertions, 0 deletions
diff --git a/GitRepoViewer/Shared/SurveyPrompt.razor b/GitRepoViewer/Shared/SurveyPrompt.razor
new file mode 100644

index 0000000..657b190 --- /dev/null +++ b/GitRepoViewer/Shared/SurveyPrompt.razor
@@ -0,0 +1,17 @@ +<div class="alert alert-secondary mt-4"> + <span class="oi oi-pencil me-2" aria-hidden="true"></span> + <strong>@Title</strong> + + <span class="text-nowrap"> + Please take our + <a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2186157">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; } + +} \ No newline at end of file