Neighbourhood.omg.lol/Components/Pages/ShareText.razor

11 lines
119 B
Text
Raw Permalink Normal View History

@page "/sharetext/{Text}"
<h3>Sharing</h3>
<p>@Text</p>
@code {
[Parameter]
public string Text { get; set; }
}