Components
Loading preview...
An animated stacked list with smooth layout transitions.
npx shadcn@latest add https://21st.dev/r/0xUrvish/stacked-list"use client";
import StackedList from "@/components/ui/stacked-list";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<StackedList />
</div>
);
}