Neighbourhood.omg.lol/Components/Pages/ShareText.razor
Gordon Pedersen df05e8a819 Made the api a singleton and got a share intent working
The result of the share intent needs more work, though.
2024-06-14 17:20:04 +10:00

10 lines
119 B
Text

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