From b0cf464004142dce602fa882c8d638605be7e479 Mon Sep 17 00:00:00 2001 From: crupest Date: Fri, 16 Apr 2021 18:01:38 +0800 Subject: ... --- FrontEnd/src/app/views/center/BoardWithoutUser.tsx | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 FrontEnd/src/app/views/center/BoardWithoutUser.tsx (limited to 'FrontEnd/src/app/views/center/BoardWithoutUser.tsx') diff --git a/FrontEnd/src/app/views/center/BoardWithoutUser.tsx b/FrontEnd/src/app/views/center/BoardWithoutUser.tsx deleted file mode 100644 index d9c7fcf4..00000000 --- a/FrontEnd/src/app/views/center/BoardWithoutUser.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import React from "react"; -import { Row, Col } from "react-bootstrap"; -import { useTranslation } from "react-i18next"; - -import { getHttpHighlightClient } from "@/http/highlight"; -import { getHttpTimelineClient } from "@/http/timeline"; - -import TimelineBoard from "./TimelineBoard"; - -const BoardWithoutUser: React.FC = () => { - const { t } = useTranslation(); - - return ( - - - getHttpHighlightClient().list()} - /> - - - - getHttpTimelineClient().listTimeline({ visibility: "Public" }) - } - /> - - - ); -}; - -export default BoardWithoutUser; -- cgit v1.2.3