Created
May 20, 2020 07:55
-
-
Save Maartz/d5bd9f478bdcb0301c0bac48563b2913 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
def render(assigns) do | |
~L""" | |
<h1>Front Porch Light</h1> | |
<div id="light"> | |
<div class="meter"> | |
<span style="width: <%= @brigthness %>%"> | |
<%= @brigthness %> | |
</div> | |
<button> | |
<img src="images/light-off.svg"/> | |
</button> | |
<button> | |
<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