mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 15:05:09 +00:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define([
|
||
|
'react', 'templates/app/components/common/duration/index'
|
||
|
], function(React, template) {
|
||
|
return React.createClass({
|
||
|
render: template
|
||
|
});
|
||
|
});
|