-
-
Save dcomartin/1aab028bee285279c632ca537acfe5f5 to your computer and use it in GitHub Desktop.
This file contains 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
<div> | |
@if (_toasterState.State.Equals("on", StringComparison.InvariantCultureIgnoreCase)) | |
{ | |
<a @onclick="PowerOn"><img src="toaster-off.png" alt="Toaster"/></a> | |
} | |
@if (_toasterState.State.Equals("off", StringComparison.InvariantCultureIgnoreCase)) | |
{ | |
<a @onclick="PowerOff"><img src="toaster-on.png" alt="Toaster"/></a> | |
} | |
</div> | |
<div> | |
<img src="dial_knob.png" alt="Strength"/> | |
<input type="number" @bind="_toasterState.Strength"/><button @onclick="SetStrength">Set</button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment