Skip to content

Instantly share code, notes, and snippets.

@conwid
Created May 19, 2025 19:57
Show Gist options
  • Select an option

  • Save conwid/4db3ce5f5a41203cb934d7a67233f142 to your computer and use it in GitHub Desktop.

Select an option

Save conwid/4db3ce5f5a41203cb934d7a67233f142 to your computer and use it in GitHub Desktop.
Gist created from visual studio extension
<SmartTextArea @bind-Value="@text" UserRole="@userRole" UserPhrases="@userPhrases"/>
@code {
private string? text;
private string userRole = "HR professional replying to applications for a role";
private string[] userPhrases = [
"Thank your for your interest in NEED_INFO",
"We have reviewed your application",
"Unfortunately we have decided not to move forward",
"We would like to schedule a call"
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment