Skip to content

Instantly share code, notes, and snippets.

@antonycourtney
Created October 15, 2015 01:55
Show Gist options
  • Save antonycourtney/3fa5dfa279614f2601a2 to your computer and use it in GitHub Desktop.
Save antonycourtney/3fa5dfa279614f2601a2 to your computer and use it in GitHub Desktop.
oneref-chat Message as Immutable Record
const Message = Immutable.Record({
id: '',
threadID: '',
threadName: '',
authorName: '',
text: '',
date: new Date(),
isRead: false
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment