You can use the npm package momentto achieve what you want.
Install it like this:
npm install
And then import into your React component, for example:
import moment from 'moment';
You can use it like:
const date = new Date();
const formattedDate = moment(date).format('DD-MMM-YY HH:mm:ss');
Docs
source
share