postio / apps /frontend /src /components /preview /render.preview.date.tsx
Leon4gr45's picture
Upload folder using huggingface_hub (part 7)
ec4551b verified
Raw
History Blame Contribute Delete
292 Bytes
'use client';
import { FC } from 'react';
import dayjs from 'dayjs';
import utc from 'dayjs/plugin/utc';
dayjs.extend(utc);
export const RenderPreviewDate: FC<{ date: string }> = ({ date }) => {
console.log(date);
return <>{dayjs.utc(date).local().format('MMMM D, YYYY h:mm A')}</>;
};