Use infinite loading to fill in all the pages in the background. Show the keywords as pills/chips, but they aren't clickable (yet?).
13 lines
309 B
JavaScript
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>
|
|
);
|
|
}
|