UNPKG

@wordpress/block-library

Version:
27 lines (22 loc) 579 B
import { comment as icon } from '@wordpress/icons'; import initBlock from '../utils/init-block'; import metadata from './block.json'; import edit from './edit'; import save from './save'; const { name } = metadata; export { metadata, name }; const TEMPLATE = [ [ 'core/avatar' ], [ 'core/comment-author-name' ], [ 'core/comment-date' ], [ 'core/comment-content' ], [ 'core/comment-reply-link' ], [ 'core/comment-edit-link' ], ]; export const settings = { icon, template: TEMPLATE, edit, save, }; export const init = () => initBlock( { name, metadata, settings } );