react-activity-feed
Version:
React components to create activity and notification feeds
26 lines (21 loc) • 381 B
text/mdx
route: /components/dropdown
menu: Composition Components
import { Playground } from 'docz';
import { Dropdown } from './Dropdown';
import { Link } from './Link';
# Dropdown
## Basic usage
<Playground>
<Dropdown>
<ul>
<li>
<Link>This link</Link>
</li>
<li>
<Link>That link</Link>
</li>
</ul>
</Dropdown>
</Playground>