import dayjs from 'dayjs' const tf = (time: string, formatPartten = 'YYYY-MM-DD HH:mm:ss') => { return dayjs(time).format(formatPartten) } export { tf }