Skip to content

Commit

Permalink
♻️ 날짜에 요일표시 추가
Browse files Browse the repository at this point in the history
날짜에 요일표시 추가
  • Loading branch information
Changyu-Ryou committed Dec 15, 2021
1 parent 1d325f0 commit 0da104d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function MeetingList({
const filteredMeetings = meetings.filter(el => el.date === date);
return (
<DateWrapper key={dateListIdx} className="date-list">
<DateLabel>{dayjs(date).format('MM월 DD일')}</DateLabel>
<DateLabel>{dayjs(date).format('MM월 DD일 dddd')}</DateLabel>
{filteredMeetings.map((meeting, meetingIdx) => {
return (
<div key={meeting.id}>
Expand Down

0 comments on commit 0da104d

Please sign in to comment.