| /* 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> | |
| ); | |
| } | |
| } | |