2026-03-02T08-38-15_auto_memory/memories.db-wal
This commit is contained in:
parent
b3f62064a1
commit
ffe7cd4da2
15
chatgpt-to-claude/src/components/FormattedDate.astro
Normal file
15
chatgpt-to-claude/src/components/FormattedDate.astro
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
interface Props {
|
||||
date: Date;
|
||||
}
|
||||
|
||||
const { date } = Astro.props;
|
||||
---
|
||||
|
||||
<time datetime={date.toISOString()}>
|
||||
{date.toLocaleDateString("en-US", {
|
||||
year: "numeric",
|
||||
month: "short",
|
||||
day: "numeric",
|
||||
})}
|
||||
</time>
|
||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user