import { memo } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; const School = (props) => { const { className, ...otherProps } = props; return ( {__('School', 'extendify-local')} ); }; export default memo(School);