()
| 13 | module.exports = (NotFoundView = (function () { |
| 14 | NotFoundView = class NotFoundView extends RootView { |
| 15 | static initClass () { |
| 16 | this.prototype.id = 'not-found-view' |
| 17 | this.prototype.template = template |
| 18 | } |
| 19 | } |
| 20 | NotFoundView.initClass() |
| 21 | return NotFoundView |