Created
August 30, 2017 21:13
-
-
Save zarkomilosevic/3f617a9f9d5d7a714fc2fc3ca2120c85 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
import * as Immutable from 'immutable'; | |
const Todo = Immutable.Record({ | |
id:'', | |
complete:false, | |
text:'', | |
}); | |
export default Todo; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/rubydonkey/flux-todomvc-rails-51/blob/CRUD/app/javascript/todoApp/data/Todo.js