File size: 737 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import LabelsList from './labels-list';
import StreamHeader from './stream-header';

class NotificationSettingsFormLabels extends Component {
	static displayName = 'NotificationSettingsFormLabels';

	static propTypes = {
		settingKeys: PropTypes.arrayOf( PropTypes.string ).isRequired,
	};

	shouldComponentUpdate() {
		return false;
	}

	render() {
		return (
			<div className="notification-settings-form-labels">
				<StreamHeader title={ this.props.translate( 'notifications' ) } />
				<LabelsList settingKeys={ this.props.settingKeys } />
			</div>
		);
	}
}

export default localize( NotificationSettingsFormLabels );