Skip to content

Commit

Permalink
feat: add style for guestbook
Browse files Browse the repository at this point in the history
  • Loading branch information
ixartz committed Aug 20, 2023
1 parent 96793f0 commit 339154c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/guestbook/page.tsx
Expand Up @@ -15,7 +15,9 @@ const Guestbook = async () => {
return (
<Main>
{guestbook.map((elt) => (
<div key={elt.id}>{elt.body}</div>
<div key={elt.id} className="mb-1">
<span className="font-semibold">{elt.username}</span>: {elt.body}
</div>
))}
</Main>
);
Expand Down

0 comments on commit 339154c

Please sign in to comment.