diff options
Diffstat (limited to 'src/App.tsx')
-rw-r--r-- | src/App.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/App.tsx b/src/App.tsx index 739a64a..b77acbc 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,6 +9,7 @@ import Logout from './pages/Logout'; import Recent from './pages/Recent'; import { useLocalStorage } from "@uidotdev/usehooks"; import { useState } from "react"; +import Search from "./pages/Search"; const supabase = createClient('https://slpoocycjgqsuoedhkbn.supabase.co', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InNscG9vY3ljamdxc3VvZWRoa2JuIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MTUyMDU0MjUsImV4cCI6MjAzMDc4MTQyNX0.xZYRTRN65rlms1Hb96IBAQvw3EGtMzUxlGPP5TVey34') @@ -32,6 +33,9 @@ function App() { <Route path="/recent" element={ <Recent supabase={supabase} session={session} timeframe={timeframe} setTimeframe={setTimeframe} /> } /> + <Route path="/search" element={ + <Search supabase={supabase} session={session} timeframe={timeframe} setTimeframe={setTimeframe} /> + } /> <Route path="/login" element={ <Login supabase={supabase} session={session} setSession={setSession} timeframe={timeframe} setTimeframe={setTimeframe} /> } /> |