Files
public-plex-watchlist/src/App.js
Melissa Avery-Weir b9b4a31f37 WAT-2: Just show items in a table with filtering
Use infinite loading to fill in all the pages in the background. Show
the keywords as pills/chips, but they aren't clickable (yet?).
2024-06-24 01:38:47 -04:00

13 lines
309 B
JavaScript

import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import Watchlist from './components/Watchlist';
export default function App() {
const queryClient = new QueryClient();
return (
<QueryClientProvider client={queryClient}>
<Watchlist />
</QueryClientProvider>
);
}