Files
twenty_crm/front/src/modules/ui/content-display/components/DateDisplay.tsx
Lucas Bordeau 9b5e24105b Refactor/display input part 2 (#1555)
* Email - Money - Number

* Date
2023-09-12 11:04:26 -07:00

10 lines
237 B
TypeScript

import { formatToHumanReadableDate } from '~/utils';
type OwnProps = {
value: Date | string | null | undefined;
};
export function DateDisplay({ value }: OwnProps) {
return <div>{value && formatToHumanReadableDate(value)}</div>;
}