diff options
author | crupest <crupest@outlook.com> | 2021-02-15 01:08:05 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-02-15 01:08:05 +0800 |
commit | 93a90bd8904ffda3686c8308657f69b1782d6e24 (patch) | |
tree | 67900e0ade7843818ffe62c084f82f51d8600c09 /FrontEnd/src/app/views/user/UserPageUI.tsx | |
parent | 00c67978d4e081f0dd391f230353a77a68ed219d (diff) | |
download | timeline-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.tsx | 18 |
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; |