nci/static/js/app/components/app.js
Vladimir Polyakov 58fa1ef6e9 terminal output
2015-05-10 19:53:33 +03:00

21 lines
406 B
JavaScript

'use strict';
define([
'react',
'app/components/projects/index',
'app/components/builds/index',
'app/components/terminal/index',
'templates/app/components/app'
], function(React, Projects, Builds, Console, template) {
var Component = React.createClass({
render: function() {
return template({
ProjectsList: Projects.List,
BuildsList: Builds.List
});
}
});
return Component;
});