diff options
author | Quentin Gliech <quentingliech@gmail.com> | 2020-02-04 22:03:21 +0100 |
---|---|---|
committer | Quentin Gliech <quentingliech@gmail.com> | 2020-02-11 20:54:37 +0100 |
commit | 022f510369688084af5bcf314a97fd332d7ee265 (patch) | |
tree | 0adf3ac82d487712f095a7692b51aaefb680be72 /webui/src/Date.tsx | |
parent | 6a502c145bd8f2e2e1a9c0b103c11f0433c60737 (diff) | |
download | git-bug-022f510369688084af5bcf314a97fd332d7ee265.tar.gz |
webui: convert more things to typescript
Diffstat (limited to 'webui/src/Date.tsx')
-rw-r--r-- | webui/src/Date.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/webui/src/Date.tsx b/webui/src/Date.tsx new file mode 100644 index 00000000..9380d2fc --- /dev/null +++ b/webui/src/Date.tsx @@ -0,0 +1,12 @@ +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; |