Skip to content

Instantly share code, notes, and snippets.

View sayandedotcom's full-sized avatar
🔍
Exploring

Sayan De sayandedotcom

🔍
Exploring
View GitHub Profile
@sayandedotcom
sayandedotcom / gist:38555c3f9811bc61de5bf1409cbe7a66
Last active December 19, 2024 18:11
Twitter / X feed system with Next.js, Prisma, Tanstack Query !
File 1 :- home.tsx ======================================================================================
export default function Home() {
const { data: session } = useSession();
const router = useRouter();
const {
data,
isLoading: isInfiniteLoading,
@sayandedotcom
sayandedotcom / gist:cfd39848edd55a2955b2a5efea99dc8e
Created July 30, 2023 16:22
React Select Library with shadcnui's design systems and forms !
1. Select Component ---------------------------------------------------------------------------------
"use client";
import clsx from "clsx";
import { ChevronDownIcon, X } from "lucide-react";
import Select, {
ClearIndicatorProps,
DropdownIndicatorProps,
MultiValueRemoveProps,