import { ReactNode, useRef } from "react"; import { CSSTransition } from "react-transition-group"; type ChipProps = { className?: string; children?: ReactNode[]; in?: boolean; }; export default function Chip({ className, children, in: inProp = true, }: ChipProps) { const nodeRef = useRef(null); return (
{children}
); }