File size: 383 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { CompactCard } from '@automattic/components';
import { localize } from 'i18n-calypso';
import { Component } from 'react';
class Skeleton extends Component {
render() {
const { translate } = this.props;
return (
<div>
<CompactCard> { translate( 'Cancelling your Quick Start session…' ) } </CompactCard>
</div>
);
}
}
export default localize( Skeleton );
|