DateCreated.js 257 B

1234567891011
  1. import React from 'react'
  2. export const DateCreated = ({ date = '' }) => {
  3. const newDate = new Date(date * 1)
  4. const resultDate = new Intl.DateTimeFormat('default').format(newDate)
  5. return (
  6. <>
  7. {resultDate}
  8. </>
  9. )
  10. }