Skip to content

Instantly share code, notes, and snippets.

@mazikwyry
Last active March 15, 2017 10:54
Show Gist options
  • Save mazikwyry/e40b1e65b73bccd236cd9faa97f8431f to your computer and use it in GitHub Desktop.
Save mazikwyry/e40b1e65b73bccd236cd9faa97f8431f to your computer and use it in GitHub Desktop.
class ToDo
attr_accessor :body, :id
def initialize(id, body)
@body = body
@id = id
end
end
class ToDoElement < React::Component::Base
param :todo, type: Object
render do
li { params.todo.body }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment