import { ReactNode } from 'react'; import { CardStackProvider, CardStackContextType } from './CardStackContext'; export interface CardStackProps { children: ReactNode; className?: string; ariaLabel?: string; } export default function CardStack({ children, className = '', ariaLabel = 'Card stack' }: CardStackProps) { const contextValue: CardStackContextType = { isVisible: true, getAnimationProps: () => ({ isVisible: true }), itemRefs: {} }; return (
{children}
); }