From d9c1d512fa64ef4f8c08ca34f7a5842642879bcc Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 31 Jul 2023 00:08:48 +0800 Subject: ... --- FrontEnd/src/views/timeline/index.tsx | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 FrontEnd/src/views/timeline/index.tsx (limited to 'FrontEnd/src/views/timeline/index.tsx') diff --git a/FrontEnd/src/views/timeline/index.tsx b/FrontEnd/src/views/timeline/index.tsx deleted file mode 100644 index 1dffdcc1..00000000 --- a/FrontEnd/src/views/timeline/index.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import * as React from "react"; -import { useParams } from "react-router-dom"; - -import { UiLogicError } from "@/common"; - -import Timeline from "./Timeline"; - -const TimelinePage: React.FC = () => { - const { owner, timeline: timelineNameParam } = useParams(); - - if (owner == null || owner == "") - throw new UiLogicError("Route param owner is not set."); - - const timeline = timelineNameParam || "self"; - - return ( -
- -
- ); -}; - -export default TimelinePage; -- cgit v1.2.3