5f0994192c
This PR fixes a bug in the docs! ### Change Type - [x] `documentation` — Changes to the documentation only[^2]
31 lines
786 B
TypeScript
31 lines
786 B
TypeScript
import { Article } from '@/types/content-types'
|
|
import { Icon } from './Icon'
|
|
|
|
type ArticleDetailsProps = {
|
|
article: Article
|
|
}
|
|
|
|
const ROOT_CONTENT_URL = `https://github.com/tldraw/tldraw/blob/main/apps/docs/content/`
|
|
|
|
export function ArticleDetails({ article: { sourceUrl, date } }: ArticleDetailsProps) {
|
|
return (
|
|
<div className="article__details">
|
|
{sourceUrl && (
|
|
<a className="article__details__edit" href={`${ROOT_CONTENT_URL}${sourceUrl}`}>
|
|
<Icon icon="edit" />
|
|
<span>Edit this page</span>
|
|
</a>
|
|
)}
|
|
{date && (
|
|
<div className="article__details__timestamp">
|
|
Last edited on{' '}
|
|
{Intl.DateTimeFormat('en-gb', {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric',
|
|
}).format(new Date(date))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|