Skip to content

Commit

Permalink
#37 chore: 빌드 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
namdaeun committed Jul 8, 2024
1 parent a9b2580 commit 94c4633
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 69 deletions.
19 changes: 19 additions & 0 deletions src/page/archiving/component/DaySection/DaySection.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { bodyStyle, dayStyle } from './DaySection.style';

interface DaySectionProps {
day: number;
onDayClick: () => void;
}

const DaySection = ({ day, onDayClick }: DaySectionProps) => {
return (
<>
<button css={dayStyle} onClick={() => onDayClick()}>
{day}
</button>
<div css={bodyStyle} />
</>
);
};

export default DaySection;
21 changes: 0 additions & 21 deletions src/page/temp/component/DaySection/DaySection.style.ts

This file was deleted.

22 changes: 0 additions & 22 deletions src/page/temp/component/MonthHeader/MonthHeader.tsx

This file was deleted.

15 changes: 0 additions & 15 deletions src/page/temp/component/TimeBlock/TimeBlock.style.tsx

This file was deleted.

11 changes: 0 additions & 11 deletions src/page/temp/component/TimeBlock/TimeBlock.tsx

This file was deleted.

0 comments on commit 94c4633

Please sign in to comment.