nci/static/js/app/components/common/duration/index.js

16 lines
270 B
JavaScript
Raw Normal View History

2015-07-21 20:00:09 +00:00
'use strict';
define([
'react', 'templates/app/components/common/duration/index', 'moment'
], function(React, template, moment) {
template = template.locals({
moment: moment
});
var Component = React.createClass({
render: template
2015-07-21 20:00:09 +00:00
});
return Component;
2015-07-21 20:00:09 +00:00
});