File size: 543 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
/*
*/
import { CompactCard as Card } from '@automattic/components';
import { PureComponent } from 'react';
import ConversationFollowButton from 'calypso/blocks/conversation-follow-button/button';
export default class ConversationFollowButtonExample extends PureComponent {
static displayName = 'ConversationFollowButton';
render() {
return (
<div>
<Card compact>
<ConversationFollowButton isFollowing={ false } />
</Card>
<Card compact>
<ConversationFollowButton isFollowing />
</Card>
</div>
);
}
}
|