diff options
author | crupest <crupest@outlook.com> | 2021-12-06 20:46:35 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-12-06 20:46:35 +0800 |
commit | 2d9ef25d6171890496b1c9dd48a91b11c40eca7c (patch) | |
tree | ac48193d08296dd880005e8e0399b0b48a4bcc5d /FrontEnd/src/views/home/index.tsx | |
parent | de0c85ca334d06f042e685b8263a3261b8f8b055 (diff) | |
download | timeline-2d9ef25d6171890496b1c9dd48a91b11c40eca7c.tar.gz timeline-2d9ef25d6171890496b1c9dd48a91b11c40eca7c.tar.bz2 timeline-2d9ef25d6171890496b1c9dd48a91b11c40eca7c.zip |
...
Diffstat (limited to 'FrontEnd/src/views/home/index.tsx')
-rw-r--r-- | FrontEnd/src/views/home/index.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FrontEnd/src/views/home/index.tsx b/FrontEnd/src/views/home/index.tsx index 2e23654e..9533ea5a 100644 --- a/FrontEnd/src/views/home/index.tsx +++ b/FrontEnd/src/views/home/index.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { useHistory } from "react-router"; +import { useNavigate } from "react-router-dom"; import { HttpTimelineInfo } from "@/http/timeline"; import { getHttpHighlightClient } from "@/http/highlight"; @@ -17,7 +17,7 @@ const highlightTimelineMessageMap = { } as const; const HomeV2: React.FC = () => { - const history = useHistory(); + const navigate = useNavigate(); const [navText, setNavText] = React.useState<string>(""); @@ -60,7 +60,7 @@ const HomeV2: React.FC = () => { value={navText} onChange={setNavText} onButtonClick={() => { - history.push(`search?q=${navText}`); + navigate(`search?q=${navText}`); }} alwaysOneline /> |