mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Release Date client component
This commit is contained in:
parent
1222df841b
commit
8f5331b66a
2 changed files with 12 additions and 1 deletions
10
src/components/albumPage/releaseDate.tsx
Normal file
10
src/components/albumPage/releaseDate.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
const locale =
|
||||
navigator && navigator.languages && navigator.languages.length ? navigator.languages[0] : navigator.language
|
||||
|
||||
interface Props {
|
||||
releaseDate: Date
|
||||
}
|
||||
|
||||
export default function ReleaseDate(props: Props) {
|
||||
return <td>{new Intl.DateTimeFormat(locale, { dateStyle: 'medium' }).format(props.releaseDate)}</td>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue