diff options
author | crupest <crupest@outlook.com> | 2021-04-16 17:43:16 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-16 17:43:16 +0800 |
commit | 3fd4375920c7692082f6e8e91d763ec5c0a1d72a (patch) | |
tree | e0523cb6c73ed1c53c99f823ebbd3395165e388d /FrontEnd/src/app/views/center/BoardWithoutUser.tsx | |
parent | 9c0053cd70593bf6add0eab4dbb91a8479d56821 (diff) | |
download | timeline-3fd4375920c7692082f6e8e91d763ec5c0a1d72a.tar.gz timeline-3fd4375920c7692082f6e8e91d763ec5c0a1d72a.tar.bz2 timeline-3fd4375920c7692082f6e8e91d763ec5c0a1d72a.zip |
...
Diffstat (limited to 'FrontEnd/src/app/views/center/BoardWithoutUser.tsx')
-rw-r--r-- | FrontEnd/src/app/views/center/BoardWithoutUser.tsx | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/FrontEnd/src/app/views/center/BoardWithoutUser.tsx b/FrontEnd/src/app/views/center/BoardWithoutUser.tsx new file mode 100644 index 00000000..d9c7fcf4 --- /dev/null +++ b/FrontEnd/src/app/views/center/BoardWithoutUser.tsx @@ -0,0 +1,33 @@ +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 ( + <Row className="my-3 justify-content-center"> + <Col xs="12" md="6"> + <TimelineBoard + title={t("home.highlightTimeline")} + load={() => getHttpHighlightClient().list()} + /> + </Col> + <Col xs="12" md="6" className="my-3 my-md-0"> + <TimelineBoard + title={t("home.publicTimeline")} + load={() => + getHttpTimelineClient().listTimeline({ visibility: "Public" }) + } + /> + </Col> + </Row> + ); +}; + +export default BoardWithoutUser; |