Posts

Showing posts with the label format

show difference in 2 times

Image
show difference in 2 times Its giving me like this instead of showing how many hours its showing "in hrs" but the real issue is even though the date is todays and time should show in minutes its giving me in hours.. I have to display time based on condition that if the order has been placed few minutes earlier it should show "1 min" , if few hours ago then "18 hr" if it is not of the present date it should show date in the format "29/06/18" . using moment.js any help is appreciated. "1 min" "18 hr" "29/06/18" moment.js This is my code: export class Notifications extends PureComponent { constructor(props) { super(props); this.state = { notificationsData: null, isLoading: true }; } componentDidMount() { if (notifications) { this.setState({ notificationsData: notifications.data, isLoading: false }); } else { ...