Skip to content

Instantly share code, notes, and snippets.

View pratikdevdas's full-sized avatar
🏠
Working from home

Pratik Dev Das pratikdevdas

🏠
Working from home
View GitHub Profile
@pratikdevdas
pratikdevdas / debounced-search.tsx
Last active August 26, 2023 09:34 — forked from tomslutsky/debounced-search.tsx
supports v2 and updated a few hooks
import { useEffect, useState } from "react";
import {
LoaderFunction,
useLoaderData,
useSubmit,
useSearchParams,
useNavigation
} from "@remix-run/react";
import { useDebounce } from './useDebounce';
import { LoaderArgs, json } from "@remix-run/node";