Animated List

An animated list component with smooth transitions.

Configuring your account...

Please wait while we prepare everything for you

Usage

import { AnimatedList } from "@/components/bynanaui/animated-list";

export function AnimatedListDemo() {
  return (
    <AnimatedList>
      {notifications.map((item, idx) => (
        <div key={idx}>{/* Your notification item */}</div>
      ))}
    </AnimatedList>
  );
}