From b568b5dfed630e54b3d8bc447052d6baddeb9264 Mon Sep 17 00:00:00 2001 From: Jelle van Snik Date: Tue, 3 May 2022 21:06:56 +0200 Subject: [PATCH] remove test code --- src/App.tsx | 15 --------------- 1 file changed, 15 deletions(-) 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:

- -
- ); -} - function App() { return ( @@ -30,9 +18,6 @@ function App() { - - -