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