with cache

This commit is contained in:
2022-11-06 21:46:56 +01:00
parent bce0931df9
commit 78b57dc4ad
2 changed files with 25 additions and 15 deletions

View File

@@ -20,7 +20,9 @@ const Posts: FC<PostProps> = ({ posts }) => {
<ReactMarkdown children={p.message} remarkPlugins={[remarkGfm]} />
)}
</div>
<small>{new Date(p.time * 1000).toLocaleString()}</small>
<small className="mt-2">
{new Date(p.time * 1000).toLocaleString()}
</small>
</div>
))}
</>