wwl
2024-11-12 3befec6cf343e37399d656a00b7f90030986091b
1
2
3
4
5
import dayjs from 'dayjs'
// 
export function formatDate(timestamp, format = 'YYYY/MM/DD') {
    return dayjs(timestamp).format(format);
  }