Skip to content

Instantly share code, notes, and snippets.

@scott-w
Last active April 26, 2017 17:49
Show Gist options
  • Save scott-w/a238079946f7df80572d5010684b880b to your computer and use it in GitHub Desktop.
Save scott-w/a238079946f7df80572d5010684b880b to your computer and use it in GitHub Desktop.
import {Model} from 'backbone';
export const NoteModel = Model.extend({
urlRoot: '/notes/',
defaults: {
header: '',
body: ''
}
});
import {Collection} from 'backbone';
import {NoteModel} from 'note.js';
export const NoteCollection = Collection.extend({
model: NoteModel,
url: '/notes/'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment