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