Working Blazor app

* New Blazor Project created

* gitignore added

* Removed unneeded files
This commit is contained in:
zha19115
2023-01-17 16:39:03 +01:00
committed by GitHub
parent 0de04330bf
commit add0018b3d
35 changed files with 1570 additions and 0 deletions

16
Shared/SurveyPrompt.razor Normal file
View File

@ -0,0 +1,16 @@
<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; }
}