diff --git a/src/app/__test__/calendar.tsx b/src/app/__test__/calendar.tsx new file mode 100644 index 0000000..05877c6 --- /dev/null +++ b/src/app/__test__/calendar.tsx @@ -0,0 +1,45 @@ +import { + Button, + Calendar, + CalendarCell, + CalendarGrid, + Heading, +} from "react-aria-components"; + +import { ChevronLeftEdgeSVG } from "@/assets/icons/chevron-left"; +import { ChevronRightEdgeSVG } from "@/assets/icons/chevron-right-edge"; +import { DefaultLayout } from "@/components/layout/default"; + +export const Test = () => { + return ( + +
+
+ +
+
+
+ ); +}; + +const CalendarComp = () => { + return ( + +
+ + + +
+ + {(date) => } + +
+ ); +}; diff --git a/src/app/mypage/mypage-claps.tsx b/src/app/mypage/mypage-claps.tsx new file mode 100644 index 0000000..53c1872 --- /dev/null +++ b/src/app/mypage/mypage-claps.tsx @@ -0,0 +1,41 @@ +import { useNavigate } from "react-router-dom"; + +import { ChevronLeftEdgeSVG } from "@/assets/icons/chevron-left"; +import MarbleSVG from "@/assets/icons/marble_small_filled.svg"; +import PostSVG from "@/assets/icons/post.svg"; +import { CalendarView } from "@/components/app/mypage/calendar-view"; +import { StatsCard } from "@/components/app/mypage/stats-card"; +import { Appbar } from "@/components/common/appbar"; +import { DefaultLayout } from "@/components/layout/default"; + +export const MyPageClaps = () => { + const navigate = useNavigate(); + return ( + navigate(-1)}> + + + } + isGrayAppbar + /> + } + > +
+

나의 칭찬 모아보기

+
+ + +
+
+ + + + + +
+ ); +}; diff --git a/src/assets/icons/marble_small_filled.svg b/src/assets/icons/marble_small_filled.svg new file mode 100644 index 0000000..cebfe26 --- /dev/null +++ b/src/assets/icons/marble_small_filled.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/components/app/comment/content-form.tsx b/src/components/app/comment/content-form.tsx deleted file mode 100644 index 815f037..0000000 --- a/src/components/app/comment/content-form.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import { ChangeEvent, Dispatch, SetStateAction } from "react"; - -import { InformationSVG } from "@/assets/icons/information"; -import { Textarea } from "@/components/common/textarea"; - -interface ContentFormProps { - content: string; - setContent: Dispatch>; -} -export const ContentForm = ({ content, setContent }: ContentFormProps) => { - return ( -
-
-

칭찬 메시지

-