Skip to content

Commit 94c4633

Browse files
committed
#37 chore: 빌드 에러 해결
1 parent a9b2580 commit 94c4633

File tree

5 files changed

+19
-69
lines changed

5 files changed

+19
-69
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { bodyStyle, dayStyle } from './DaySection.style';
2+
3+
interface DaySectionProps {
4+
day: number;
5+
onDayClick: () => void;
6+
}
7+
8+
const DaySection = ({ day, onDayClick }: DaySectionProps) => {
9+
return (
10+
<>
11+
<button css={dayStyle} onClick={() => onDayClick()}>
12+
{day}
13+
</button>
14+
<div css={bodyStyle} />
15+
</>
16+
);
17+
};
18+
19+
export default DaySection;

src/page/temp/component/DaySection/DaySection.style.ts

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/page/temp/component/MonthHeader/MonthHeader.tsx

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/page/temp/component/TimeBlock/TimeBlock.style.tsx

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/page/temp/component/TimeBlock/TimeBlock.tsx

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)