{
- constructor(props: any) {
- super(props);
- }
-
- public render() {
- const classes = ['bulk-edit-container'];
-
- if (this.props.messageCount === 0) {
- classes.push('hidden');
- }
-
- return (
-
-
- Delete
-
-
- Messages selected: {this.props.messageCount}
-
-
- Cancel
-
-
- );
- }
-}