mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 21:45:07 +00:00
16 lines
265 B
JavaScript
16 lines
265 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define([
|
||
|
'react',
|
||
|
'templates/app/components/common/dateTime/template'
|
||
|
], function(React, template) {
|
||
|
var Component = React.createClass({
|
||
|
propTypes: {
|
||
|
date: React.PropTypes.instanceOf(Date)
|
||
|
},
|
||
|
render: template
|
||
|
});
|
||
|
|
||
|
return Component;
|
||
|
});
|