import { Component } from 'inferno'; import * as moment from 'moment'; interface MomentTimeProps { data: { published?: string; when_?: string; updated?: string; } } export class MomentTime extends Component { constructor(props: any, context: any) { super(props, context); } render() { if (this.props.data.updated) { return ( modified {moment.utc(this.props.data.updated).fromNow()} ) } else { let str = this.props.data.published || this.props.data.when_; return ( {moment.utc(str).fromNow()} ) } } }