Skip to content

Instantly share code, notes, and snippets.

@Maartz
Created May 20, 2020 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Maartz/d5bd9f478bdcb0301c0bac48563b2913 to your computer and use it in GitHub Desktop.
Save Maartz/d5bd9f478bdcb0301c0bac48563b2913 to your computer and use it in GitHub Desktop.
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