Skip to content

Commit a527a9e

Browse files
committed
feat: 캘린더 일정 리스트 UI 추가 및 일정 메뉴버튼 추가
1 parent fc975f6 commit a527a9e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import MyCalendarPage from './pages/MyCalendarPage';
1+
import { Calendar } from './components/common/Calendar.tsx';
22

33
function App() {
44

src/components/common/Calendar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { useRef, useState, useEffect } from 'react';
66
import { useEventState } from '@/stores/myEventsStore';
77
import { getPersonalSchedule } from '@/apis/personalScheduleApi';
88

9-
109
type Event = {
1110
title: string;
1211
start: Date | string;
@@ -16,6 +15,7 @@ interface EventCardsProps {
1615
date: Date | string | null;
1716
}
1817

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1919
const events = [
2020
{ title: 'Meeting', start: new Date() },
2121
{ title: 'Meeting', start: '2024-05-08' },

0 commit comments

Comments
 (0)