Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Card } from '@automattic/components';
import { Component } from 'react';
import CommentButton from 'calypso/blocks/comment-button';
export default class CommentButtonExample extends Component {
static displayName = 'CommentButtonExample';
render() {
return (
<div>
<Card compact>
<CommentButton commentCount={ 0 } />
</Card>
<Card compact>
<CommentButton commentCount={ 42 } />
</Card>
</div>
);
}
}