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