mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 09:45:08 +00:00
18 lines
294 B
JavaScript
18 lines
294 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define([
|
||
|
'react',
|
||
|
'app/components/projects/index',
|
||
|
'templates/app/components/app'
|
||
|
], function(React, Projects, template) {
|
||
|
var Component = React.createClass({
|
||
|
render: function() {
|
||
|
return template({
|
||
|
ProjectsList: Projects.List
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
return Component;
|
||
|
});
|