10 lines
237 B
TypeScript
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>;
|
|
}
|