File size: 450 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
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>
);
}
}
|