Skip to content

Commit

Permalink
Chore: modify component name #84
Browse files Browse the repository at this point in the history
  • Loading branch information
seo0o519 committed May 23, 2024
1 parent 005f123 commit f86dadc
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/components/common/TripCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ const TripCalendar = ({ diaryInfo }) => {
tileContent={tileContent}
tileClassName={tileClassName}
/>
<StyledDrawer anchor="bottom" open={isOpen} onClose={toggleDrawer(false)}>
<StyledDiaryModal
<Drawer anchor="bottom" open={isOpen} onClose={toggleDrawer(false)}>
<DiaryModal
content={<DiaryPreviewContent diaries={selectedDiary} />}
/>
</StyledDrawer>
</Drawer>
</CalendarWrapper>
);
};
Expand Down Expand Up @@ -220,9 +220,3 @@ const CalendarWrapper = styled.div`
justify-content: center;
padding-bottom: 6rem;
`;

const StyledDrawer = styled(Drawer)`
`;

const StyledDiaryModal = styled(DiaryModal)`
`;

0 comments on commit f86dadc

Please sign in to comment.