Skip to content

Commit

Permalink
feat: 관련뉴스 ui 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
cindycho0423 committed Dec 22, 2024
1 parent 75ed36a commit 47eb237
Showing 1 changed file with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,25 @@

export default function RelativeNews() {
return (
<div>
<div>관련뉴스</div>
</div>
<table className="border-y border-solid border-gray-100">
<caption className="text-left">관련뉴스</caption>
<thead>
<tr className="bg-green-100">
<th>제목</th>
<th>정보 제공</th>
<th>날짜</th>
</tr>
</thead>
<tbody>
<tr className="border-y border-solid border-gray-100">
<td>
코스피, 외국인 &quot;바이 코리아&quot;에 2680 선 마감.. LG 에너지
솔루
</td>
<td>머니 투데이</td>
<td>2024.09.02 </td>
</tr>
</tbody>
</table>
);
}

0 comments on commit 47eb237

Please sign in to comment.