Skip to content

Instantly share code, notes, and snippets.

@catmando
Created March 16, 2019 02:43
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 catmando/19769b4db58c77012f5908bf7e2d796d to your computer and use it in GitHub Desktop.
Save catmando/19769b4db58c77012f5908bf7e2d796d to your computer and use it in GitHub Desktop.
class TodoItem < HyperComponent
param :item
fires :delete_item
render(DIV, class: 'ToDoItem') do
P(class: 'ToDoItem-Text') { @Item }
BUTTON(class: 'ToDoItem-Delete').on(:click) { delete_item! }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment