aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/pages/timeline/TimelinePostCard.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-08-01 00:40:18 +0800
committercrupest <crupest@outlook.com>2023-08-01 00:41:47 +0800
commit4133d7122a54faf85458151d36c5fc040db7baef (patch)
tree8d69592a8eab4cdf72eb7311da26fa8a0fc57d1c /FrontEnd/src/pages/timeline/TimelinePostCard.tsx
parente6ccc0174a86a0ade240e6551228598cd81f984b (diff)
downloadtimeline-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.tsx4
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}