diff --git a/app/assets/javascripts/components/components/relative_timestamp.jsx b/app/assets/javascripts/components/components/relative_timestamp.jsx
index 3a5b885236..3b012b184b 100644
--- a/app/assets/javascripts/components/components/relative_timestamp.jsx
+++ b/app/assets/javascripts/components/components/relative_timestamp.jsx
@@ -1,15 +1,18 @@
-import {
- FormattedMessage,
- FormattedDate,
- FormattedRelative
-} from 'react-intl';
-
-const RelativeTimestamp = ({ timestamp }) => {
- return ;
+import { injectIntl, FormattedRelative } from 'react-intl';
+
+const RelativeTimestamp = ({ intl, timestamp }) => {
+ const date = new Date(timestamp);
+
+ return (
+
+ );
};
RelativeTimestamp.propTypes = {
+ intl: React.PropTypes.object.isRequired,
timestamp: React.PropTypes.string.isRequired
};
-export default RelativeTimestamp;
+export default injectIntl(RelativeTimestamp);