mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
7 lines
173 B
CoffeeScript
7 lines
173 B
CoffeeScript
|
View = require 'views/kinds/RootView'
|
||
|
template = require 'templates/not_found'
|
||
|
|
||
|
module.exports = class NotFoundView extends View
|
||
|
id: "not-found-view"
|
||
|
template: template
|