2021-04-14 17:41:14 +02:00

14 lines
274 B
JavaScript

/**
Instantiate your enyo/Application kind in this file. Note, application
rendering should be deferred until the DOM is ready by wrapping it in a
call to ready().
*/
var
ready = require('enyo/ready'),
App = require('./src/App');
ready(function () {
new App();
});