File size: 1,509 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | /* eslint-disable wpcalypso/jsx-classname-namespace */
import { CompactCard, Gridicon } from '@automattic/components';
import { Component } from 'react';
export default class extends Component {
static displayName = 'NotificationsBlogSettingsPlaceholder';
shouldComponentUpdate() {
return false;
}
render() {
return (
<CompactCard className="notification-settings-blog-settings-placeholder">
<header className="notification-settings-blog-settings-placeholder__header">
<div className="notification-settings-blog-settings-placeholder__blog">
<div className="notification-settings-blog-settings-placeholder__blog__content">
<div className="notification-settings-blog-settings-placeholder__blog__content__icon">
<Gridicon
// eslint-disable-next-line wpcalypso/jsx-classname-namespace
className="notification-settings-blog-settings-placeholder__blog__content__icon__gridicon"
icon="site"
/>
</div>
<div className="notification-settings-blog-settings-placeholder__blog__info">
<div className="notification-settings-blog-settings-placeholder__blog__info__title">
</div>
<div className="notification-settings-blog-settings-placeholder__blog__info__domain">
</div>
</div>
</div>
</div>
<div className="notification-settings-blog-settings-placeholder__legend">
<em> </em>
</div>
</header>
</CompactCard>
);
}
}
|