import { cn } from "@/lib/utils" import { ReactNode } from "react" export function LastEvent({ children, className = "" }: { children: ReactNode className?: string }) { return (
{children}
) }