aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Date.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/Date.tsx')
-rw-r--r--webui/src/Date.tsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/webui/src/Date.tsx b/webui/src/Date.tsx
deleted file mode 100644
index 9380d2fc..00000000
--- a/webui/src/Date.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import Tooltip from '@material-ui/core/Tooltip/Tooltip';
-import moment from 'moment';
-import React from 'react';
-
-type Props = { date: string };
-const Date = ({ date }: Props) => (
- <Tooltip title={moment(date).format('MMMM D, YYYY, h:mm a')}>
- <span> {moment(date).fromNow()} </span>
- </Tooltip>
-);
-
-export default Date;