diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-19 16:32:14 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-19 16:32:14 +0200 |
| commit | 8880e0efec7462f6865e528f01b9973c6e722e8b (patch) | |
| tree | 8771072a8df80227beb0bbff5634df194eccc813 /src/DevHive.Blazor/Shared/SurveyPrompt.razor | |
| parent | 05d8be770dd5e728bc93a2322343cda3ddf939b7 (diff) | |
| download | DevHive-8880e0efec7462f6865e528f01b9973c6e722e8b.tar DevHive-8880e0efec7462f6865e528f01b9973c6e722e8b.tar.gz DevHive-8880e0efec7462f6865e528f01b9973c6e722e8b.zip | |
Blazor Template added
Diffstat (limited to 'src/DevHive.Blazor/Shared/SurveyPrompt.razor')
| -rw-r--r-- | src/DevHive.Blazor/Shared/SurveyPrompt.razor | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/DevHive.Blazor/Shared/SurveyPrompt.razor b/src/DevHive.Blazor/Shared/SurveyPrompt.razor new file mode 100644 index 0000000..d78f8cf --- /dev/null +++ b/src/DevHive.Blazor/Shared/SurveyPrompt.razor @@ -0,0 +1,16 @@ +<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=2137813">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; }
+}
|
