1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-08-13 17:03:51 -04:00
kaiwa/clientapp/pages/main.js
2013-09-03 15:25:14 -07:00

14 lines
252 B
JavaScript

/*global app*/
"use strict";
var BasePage = require('./base');
var templates = require('../templates');
module.exports = BasePage.extend({
template: templates.pages.main,
initialize: function (spec) {
this.renderAndBind();
}
});