github.com/argoproj/argo-cd@v1.8.7/ui/src/app/shared/components/timestamp.tsx (about) 1 import * as React from 'react'; 2 import Moment from 'react-moment'; 3 4 export const Timestamp = ({date}: {date: string | number}) => { 5 return ( 6 <span> 7 <Moment fromNow={true}>{date}</Moment> (<Moment local={true}>{date}</Moment>) 8 </span> 9 ); 10 };