created updated removed

This commit is contained in:
VividTruthKeeper 2022-09-10 15:58:24 +05:00
parent f7364d061f
commit 9af48c8722
2 changed files with 1 additions and 5 deletions

View File

@ -34,7 +34,7 @@
min-height: 7rem;
padding: 1rem;
display: grid;
grid-template-columns: 1fr 2.5fr 2fr 2fr 1.5fr 3fr 1.5fr 1.5fr;
grid-template-columns: 1fr 2.5fr 2fr 2fr 1.5fr 3fr;
gap: 1rem;
}

View File

@ -21,8 +21,6 @@ const headers: string[] = [
"Link",
"Date",
"Summary",
"Created",
"Updated",
];
const Posts = () => {
@ -114,8 +112,6 @@ const Posts = () => {
</td>
<td>{parseDate(post.date)[0]}</td>
<td>{post.summary}</td>
<td>{parseDate(post.createdAt)[0]}</td>
<td>{parseDate(post.updatedAt)[0]}</td>
</tr>
</Link>
);