react-activity-feed
Version:
React components to create activity and notification feeds
26 lines (17 loc) • 381 B
text/mdx
route: /components/textarea
menu: UI Components
import { Playground, Props } from 'docz';
import { Textarea } from './Textarea';
# Textarea
## Properties
<Props of={Textarea} />
## Basic usage
<Playground>
<Textarea />
</Playground>
## Customized
<Playground>
<Textarea rows={5} maxLength={300} placeholder="Start writing your message here..." />
</Playground>