Created
May 20, 2020 08:11
-
-
Save Maartz/4346408ed3ec6753cf14a7de0e5197ae 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
def render(assigns) do | |
~L""" | |
<h1>Front Porch Light</h1> | |
<div id="light"> | |
<div class="meter"> | |
<span style="width: <%= @brigthness %>%"> | |
<%= @brigthness %> | |
</div> | |
<button phx-click="off"> | |
<img src="images/light-off.svg"/> | |
</button> | |
<button phx-click="on"> | |
<img src="images/light-on.svg"/> | |
</button> | |
</div> | |
""" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment