react-activity-feed
Version:
React components to create activity and notification feeds
32 lines (21 loc) • 493 B
text/mdx
route: /components/load-more-button
menu: UI Components
import { Playground, Props } from 'docz';
import { LoadMoreButton } from './LoadMoreButton';
# LoadMoreButton
## Properties
<Props of={LoadMoreButton} />
## Basic usage
<Playground>
<LoadMoreButton onClick={console.log} />
</Playground>
## With custom text
<Playground>
<LoadMoreButton>Click to load more</LoadMoreButton>
</Playground>
## Refreshing state
<Playground>
<LoadMoreButton refreshing />
</Playground>