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