| 3 | import { formatLongDateTime, formatSemanticDateTime, parseDateLike } from '../../utils/dateTime' |
| 4 | |
| 5 | interface DateTimeTextProps { |
| 6 | value: number | string | Date | null | undefined |
| 7 | className?: string |
| 8 | style?: React.CSSProperties |
| 9 | tooltip?: boolean |
| 10 | emptyText?: string |
| 11 | } |
| 12 | |
| 13 | export function DateTimeText({ |
| 14 | value, |
nothing calls this directly
no outgoing calls
no test coverage detected