ExpandingTextareaDemo() — supabase Function Reference
Architecture documentation for the ExpandingTextareaDemo() function in expanding-textarea-demo.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/design-system/registry/default/example/expanding-textarea-demo.tsx lines 4–16
export default function ExpandingTextareaDemo() {
const [value, setValue] = useState('')
return (
<ExpandingTextArea
placeholder="Type your message in multiple lines here."
value={value}
onChange={(event) => {
setValue(event.target.value)
}}
/>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free