Skip to content

Instantly share code, notes, and snippets.

@kstulgys
Created April 29, 2019 23:50
Show Gist options
  • Save kstulgys/d6e3fab4820d2957a7b7cf94f3fb017e to your computer and use it in GitHub Desktop.
Save kstulgys/d6e3fab4820d2957a7b7cf94f3fb017e to your computer and use it in GitHub Desktop.
import TodosModel from "./TodosModel";
import TodosView from "./TodosView";
import TodosController from "./TodosController";
import PubSub from "./PubSub";
const pubSub = new PubSub();
const model = new TodosModel(pubSub);
const view = new TodosView(document.getElementById("app"), pubSub);
new TodosController(model, view);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment