Created
March 15, 2017 11:01
-
-
Save mazikwyry/b7db5934c67872b95409713f1e30cb27 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
class ToDoForm < React::Component::Base | |
param :add_todo, type: Proc | |
define_state body: '' | |
render do | |
div do | |
div do | |
input(type: :text, value: state.body) | |
.on(:change) { |e| state.body! e.target.value } | |
end | |
button { 'Add' } | |
.on(:click) { params.add_todo(state.body) } | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment