diff --git a/src/App.tsx b/src/App.tsx index 61496f66..e67c09b8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,5 +1,3 @@ -import { SearchBarInput } from "components/SearchBar"; -import { useSearchQuery } from "hooks/useSearchQuery"; import { MWMediaType } from "providers"; import { Redirect, Route, Switch } from "react-router-dom"; import { BookmarkContextProvider } from "state/bookmark"; @@ -9,16 +7,6 @@ import "./index.css"; import { MediaView } from "./views/MediaView"; import { SearchView } from "./views/SearchView"; -function TestInput() { - const [q1, c1, b1] = useSearchQuery(); - return ( -
Normal:
-