2023-07-26 11:31:59 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
|
|
|
|
export default function HeaderTitle() {
|
|
|
|
return (
|
2023-08-16 10:17:35 +00:00
|
|
|
<h1 className="woocommerce-marketplace__header-title">
|
2023-07-26 11:31:59 +00:00
|
|
|
{ __( 'Extensions', 'woocommerce' ) }
|
2023-08-16 10:17:35 +00:00
|
|
|
</h1>
|
2023-07-26 11:31:59 +00:00
|
|
|
);
|
|
|
|
}
|