Files
shadcn-ui/deprecated/www/registry/default/examples/textarea-with-button.tsx
shadcn 2bfc1c82ba chore: deprecate www (#8629)
* chore: deprecate www

* chore: updates

* fix
2025-10-29 20:50:55 +04:00

12 lines
321 B
TypeScript

import { Button } from "@/registry/default/ui/button"
import { Textarea } from "@/registry/default/ui/textarea"
export default function TextareaWithButton() {
return (
<div className="grid w-full gap-2">
<Textarea placeholder="Type your message here." />
<Button>Send message</Button>
</div>
)
}