Skip to content

Instantly share code, notes, and snippets.

@dearshrewdwit
dearshrewdwit / notes-exemplar.js
Created December 14, 2018 11:57
An MVP exemplar of a notes SPA
// /app.js
// on load, create the controller, render the initial list view
window.addEventListener('load', function() {
// create a note-list-model, with a Note
var noteList = new NoteList(Note)
// create the note-list-view
var noteListView = new NoteListView(noteList)