aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/user/UserPageUI.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-02-15 01:08:05 +0800
committercrupest <crupest@outlook.com>2021-02-15 01:08:05 +0800
commit93a90bd8904ffda3686c8308657f69b1782d6e24 (patch)
tree67900e0ade7843818ffe62c084f82f51d8600c09 /FrontEnd/src/app/views/user/UserPageUI.tsx
parent00c67978d4e081f0dd391f230353a77a68ed219d (diff)
downloadtimeline-93a90bd8904ffda3686c8308657f69b1782d6e24.tar.gz
timeline-93a90bd8904ffda3686c8308657f69b1782d6e24.tar.bz2
timeline-93a90bd8904ffda3686c8308657f69b1782d6e24.zip
refactor: Refactor timeline card.
Diffstat (limited to 'FrontEnd/src/app/views/user/UserPageUI.tsx')
-rw-r--r--FrontEnd/src/app/views/user/UserPageUI.tsx18
1 files changed, 0 insertions, 18 deletions
diff --git a/FrontEnd/src/app/views/user/UserPageUI.tsx b/FrontEnd/src/app/views/user/UserPageUI.tsx
deleted file mode 100644
index d405399c..00000000
--- a/FrontEnd/src/app/views/user/UserPageUI.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from "react";
-
-import TimelinePageTemplateUI, {
- TimelinePageTemplateUIProps,
-} from "../timeline-common/TimelinePageTemplateUI";
-
-import UserInfoCard, { PersonalTimelineManageItem } from "./UserInfoCard";
-
-export type UserPageUIProps = Omit<
- TimelinePageTemplateUIProps<PersonalTimelineManageItem>,
- "CardComponent"
->;
-
-const UserPageUI: React.FC<UserPageUIProps> = (props) => {
- return <TimelinePageTemplateUI {...props} CardComponent={UserInfoCard} />;
-};
-
-export default UserPageUI;