Update src/components/cardStack/CardList.tsx

This commit is contained in:
2026-03-04 18:53:31 +00:00
parent 39aabdb7b7
commit ca488ea512

View File

@@ -1,7 +1,7 @@
import React, { useRef, useEffect, useState } from 'react';
import React, { useRef } from 'react';
import { useCardAnimation, UseCardAnimationOptions } from '@/hooks/useCardAnimation';
interface CardListProps {
export interface CardListProps {
children: React.ReactNode;
containerClassName?: string;
}