Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/*
*/
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>
);
}
}