Skip to content

Commit

Permalink
Feat: key값 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
navyjeongs committed Jan 29, 2024
1 parent e7d8746 commit 083f79e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export default function Home() {
<List>
{data?.map((notice, index) => {
return (
<Item>
<ItemHeader key={index}>
<Item key={index}>
<ItemHeader>
<ItemIndex>{index + 1}.</ItemIndex>
<ItemLink href={notice.noticeLink} target='_blank'>
{notice.noticeTitle}
Expand Down

0 comments on commit 083f79e

Please sign in to comment.