hesto2 / react-animated-list

Parent component that automatically animates the addition/removal of its children
MIT License
7 stars 2 forks source link

Animation props.timeout not working #64

Open chertik77 opened 3 months ago

chertik77 commented 3 months ago
     <AnimatedList
            animation='grow'
            animationProps={{ timeout: { appear: 1000000000 } }}>
            {sortedCards.map(card => (
              <BoardCard
                card={card}
                key={card.id}
              />
            ))}
          </AnimatedList>
chertik77 commented 3 months ago

@hesto2