Created
November 1, 2020 23:46
-
-
Save fsanggang/b5a25c512cd701dbe633e5d7749e96e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Pages/Post/Edit.razor | |
| <div class="row"> | |
| <div class="col-6"> | |
| <input type="hidden" @bind-value="@post.Body" /> | |
| <textarea rows="20" class="form-control" id="body" @bind="@post.Body" @bind:event="oninput" /> | |
| </div> | |
| <div class="col-6"> | |
| @((MarkupString) post.MarkupString) | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment