ECOM-4904 Move the program editor backbone app to Studio (#12962)

This commit is contained in:
Simon Chen
2016-07-19 19:09:51 -04:00
committed by GitHub
parent 7745e7cdf7
commit 1d768cde7a
65 changed files with 3283 additions and 108 deletions

View File

@@ -0,0 +1,10 @@
(function() {
'use strict';
require([
'js/programs/views/program_admin_app_view'
],
function( ProgramAdminAppView ) {
return new ProgramAdminAppView();
}
);
})();