See sample below. Could you please advise on the correct way to code this? Thank you.
<SfInPlaceEditor
Mode="Syncfusion.Blazor.InPlaceEditor.RenderMode.Inline"
Type="Syncfusion.Blazor.InPlaceEditor.InputType.RichTextEditor"
@bind-Value="@TextValue"
TValue="string">
<EditorComponent>
<SfRichTextEditor @bind-Value="@TextValue"></SfRichTextEditor>
</EditorComponent>
</SfInPlaceEditor>
@code {
private string TextValue { get; set; } = "syncfusion";
}