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