Created
May 19, 2025 19:57
-
-
Save conwid/4db3ce5f5a41203cb934d7a67233f142 to your computer and use it in GitHub Desktop.
Gist created from visual studio extension
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
| <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