72133fbed6
* Re-add clear notifications button * remove connect() in column_settings * one line * remove unused props
20 lines
534 B
JavaScript
20 lines
534 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
class ClearColumnButton extends React.Component {
|
|
|
|
static propTypes = {
|
|
onClick: PropTypes.func.isRequired,
|
|
};
|
|
|
|
render () {
|
|
return (
|
|
<button className='text-btn column-header__setting-btn' tabIndex='0' onClick={this.props.onClick}><i className='fa fa-eraser' /> <FormattedMessage id='notifications.clear' defaultMessage='Clear notifications' /></button>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default ClearColumnButton;
|