Skip to content

Commit

Permalink
♿️ 각 모각코 아이템을 요약해서 읽어주도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
js43o committed Dec 13, 2023
1 parent d4bff3d commit eeb0953
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/frontend/src/components/MogacoItem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,15 @@ export function MogacoItem({
);

return (
<NavLink to={`/mogaco/${id}`} className={styles.container}>
<h2 className={styles.titleArea}>
<NavLink
to={`/mogaco/${id}`}
className={styles.container}
aria-label={`${title}, ${status}`}
>
<div className={styles.titleArea}>
{MogacoLabel}
<div className={styles.title}>{title}</div>
</h2>
<h2 className={styles.title}>{title}</h2>
</div>
<span className={styles.group}>{groupTitle}</span>
<div className={styles.content}>
<p className={styles.detail}>{contents}</p>
Expand Down

0 comments on commit eeb0953

Please sign in to comment.