nci/static/js/app/app.js
2015-05-08 00:55:40 +03:00

15 lines
287 B
JavaScript

'use strict';
define([
'react', 'templates/app/index', 'app/components/index',
'app/actions/project'
], function(
React, template, Components, ProjectActions
) {
React.render(template({
App: Components.App
}), document.getElementById('content'));
ProjectActions.readAll();
});