|
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
|
|
export default function HeaderTitle() {
|
|
return (
|
|
<div className="woocommerce-marketplace__header-title">
|
|
{ __( 'Extensions', 'woocommerce' ) }
|
|
</div>
|
|
);
|
|
}
|