@wordpress/block-library
Version:
Block library for the WordPress editor.
34 lines (23 loc) • 437 B
JavaScript
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import edit from './edit';
export const name = 'core/rss';
export const settings = {
title: __( 'RSS' ),
description: __( 'Display entries from any RSS or Atom feed.' ),
icon: 'rss',
category: 'widgets',
keywords: [ __( 'atom' ), __( 'feed' ) ],
supports: {
html: false,
},
edit,
save() {
return null;
},
};