Skip to content

Instantly share code, notes, and snippets.

View jorgebef's full-sized avatar
👋

Jorge B jorgebef

👋
View GitHub Profile
"use client";
import { PostsCollectionProps } from "@/payload-types";
import { cn } from "@/util/ui";
import { ArrowRight, HashIcon } from "lucide-react";
import { ComponentProps, useEffect, useRef, useState } from "react";
type Props = ComponentProps<"ul"> & {
post: PostsCollectionProps;
};