overleaf-server-arm/services/web/frontend/js/shared/components/format-time-based-on-year.tsx
2025-04-24 13:11:28 +08:00

9 lines
273 B
TypeScript

import { memo } from 'react'
import { formatTimeBasedOnYear } from '@/features/utils/format-date'
export const FormatTimeBasedOnYear = memo<{ date: string | number | Date }>(
function FormatTimeBasedOnYear({ date }) {
return <>{formatTimeBasedOnYear(date)}</>
}
)