mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import { Button } from "@/components/ui/button"
|
|
import { Textarea } from "@/components/ui/textarea"
|
|
|
|
export function TextareaWithButton() {
|
|
return (
|
|
<div className="grid w-full gap-2">
|
|
<Textarea placeholder="Type your message here." />
|
|
<Button>Send message</Button>
|
|
</div>
|
|
)
|
|
}
|