import { memo } from '@wordpress/element'; const Blog = (props) => { const { className, ...otherProps } = props; return ( ); }; export default memo(Blog);