/**
* WordPress dependencies
*/
const {
Component,
} = wp.element;
const {
InnerBlocks,
} = wp.blockEditor;
/**
* Component
*/
export default class AlertBlockSave extends Component {
render() {
return <InnerBlocks.Content />;
}
}