nci/static/js/app/components/header/index.js
2015-07-11 15:24:35 +03:00

20 lines
371 B
JavaScript

'use strict';
define([
'react',
'react-router',
'app/components/projects/selector/index',
'templates/app/components/header/index'
], function(React, Router, ProjectsSelector, template) {
template = template.locals({
Link: Router.Link,
ProjectsSelector: ProjectsSelector
});
var Component = React.createClass({
render: template
});
return Component;
});