Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/* 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">
&nbsp;
</div>
<div className="notification-settings-blog-settings-placeholder__blog__info__domain">
&nbsp;
</div>
</div>
</div>
</div>
<div className="notification-settings-blog-settings-placeholder__legend">
<em>&nbsp;</em>
</div>
</header>
</CompactCard>
);
}
}