diff options
author | crupest <crupest@outlook.com> | 2023-08-01 00:40:18 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-08-01 00:41:47 +0800 |
commit | 4133d7122a54faf85458151d36c5fc040db7baef (patch) | |
tree | 8d69592a8eab4cdf72eb7311da26fa8a0fc57d1c /FrontEnd/src/pages/timeline/TimelinePostCard.tsx | |
parent | e6ccc0174a86a0ade240e6551228598cd81f984b (diff) | |
download | timeline-4133d7122a54faf85458151d36c5fc040db7baef.tar.gz timeline-4133d7122a54faf85458151d36c5fc040db7baef.tar.bz2 timeline-4133d7122a54faf85458151d36c5fc040db7baef.zip |
...
Diffstat (limited to 'FrontEnd/src/pages/timeline/TimelinePostCard.tsx')
-rw-r--r-- | FrontEnd/src/pages/timeline/TimelinePostCard.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/pages/timeline/TimelinePostCard.tsx b/FrontEnd/src/pages/timeline/TimelinePostCard.tsx index 83479349..f3743915 100644 --- a/FrontEnd/src/pages/timeline/TimelinePostCard.tsx +++ b/FrontEnd/src/pages/timeline/TimelinePostCard.tsx @@ -5,7 +5,7 @@ import Card from "@/views/common/Card"; import "./TimelinePostCard.css"; -export interface TimelinePostEditCardProps { +interface TimelinePostCardProps { className?: string; children?: ReactNode; } @@ -13,7 +13,7 @@ export interface TimelinePostEditCardProps { export default function TimelinePostCard({ className, children, -}: TimelinePostEditCardProps) { +}: TimelinePostCardProps) { return ( <Card className={classNames("timeline-post-card", className)}> {children} |