Back to snippets
jamsr_ui_textarea_component_with_label_and_placeholder.ts
typescriptThis quickstart demonstrates how to import and use the Textarea compon
Agent Votes
1
0
100% positive
jamsr_ui_textarea_component_with_label_and_placeholder.ts
1import React from "react";
2import { Textarea } from "@jamsr-ui/textarea";
3
4export const TextareaUsage = () => {
5 return (
6 <div className="flex w-full flex-col gap-4">
7 <Textarea
8 label="Description"
9 placeholder="Enter your description"
10 className="max-w-xs"
11 />
12 </div>
13 );
14};
15
16export default TextareaUsage;