Reputation: 371
My date format is 2021-01-21 10-27-24. and trying to make this Today at 12:57 PM .
Upvotes: 1
Views: 229
Reputation: 241
install moment --> npm i --save moment
import moment from 'moment
moment('2021-01-28 10-27-24', "YYYY-MM-DD hh:mm:ss").fromNow()
Upvotes: 2