import moment from 'moment' export function formatDate(date: Date, format='YYYY-MM-DD HH:mm:ss'): string { return moment(date).format(format) }